/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Collage Background */
.collage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* General image styling */
.collage-background img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 5px; /* ADD SPACE inside each image box */
    background: #000; /* BLACK background behind each image to act as the "border" */
}


/* Manual positioning for each image */
* {
    box-sizing: border-box;
}

.img1 {
    top: 0;
    left: 0;
    width: 33.3333%;
    height: 50%;
}
.img2 {
    top: 0;
    left: 33.3333%;
    width: 33.3333%;
    height: 50%;
}
.img3 {
    top: 0;
    left: 66.6666%;
    width: 33.3333%;
    height: 50%;
}
.img4 {
    top: 50%;
    left: 0;
    width: 33.3333%;
    height: 50%;
}
.img5 {
    top: 50%;
    left: 33.3333%;
    width: 33.3333%;
    height: 50%;
}
.img6 {
    top: 50%;
    left: 66.6666%;
    width: 33.3333%;
    height: 50%;
}

/* Hero Text Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}



#about img, #projects img {
    border-radius: 5px;
}

footer {
    background: #222;
}

/* Contact Form Styles */
#contact-form input, #contact-form textarea {
    border-radius: 0;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}
