@import url('https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@100..800&display=swap');

/* ===== COLOR SCHEME ===== */
/* 
Color 1: #FFFFFF (White - backgrounds, text)
Color 2: #000000 (Black - text, nav)
Color 3: #D9D9D9 (Light Gray - buttons, accents)
Color 4: #F5F5F5 (Off-White - section backgrounds)
Color 5: #5C5C5C (Medium Gray - shadows, hover states)
*/

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anek Gujarati', sans-serif;
    font-weight: 300;
    background-color: #F5F5F5;
    color: #000000;
    line-height: 1.6;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

p {
    font-weight: 200;
    font-size: 18px;
    line-height: 1.8;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #5C5C5C;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #5C5C5C;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    padding: 80px 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/texture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ===== PHOTO COLLAGE ===== */
.photo-collage {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-collage img {
    position: absolute;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 5px solid #FFFFFF;
}

.collage-center {
    width: 350px;
    height: 280px;
    object-fit: cover;
    z-index: 3;
    transform: rotate(-2deg);
}

.collage-left {
    width: 280px;
    height: 220px;
    object-fit: cover;
    left: -50px;
    top: 50px;
    z-index: 2;
    transform: rotate(-8deg);
    opacity: 0.85;
}

.collage-right {
    width: 280px;
    height: 220px;
    object-fit: cover;
    right: -50px;
    top: 50px;
    z-index: 2;
    transform: rotate(8deg);
    opacity: 0.85;
}

.photo-collage img:hover {
    transform: scale(1.05) rotate(0deg);
    opacity: 1;
    z-index: 10;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===== HERO TEXT ===== */
.hero-text {
    text-align: center;
}

.subheading {
    font-size: 24px;
    font-weight: 300;
    color: #5C5C5C;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: #FFFFFF;
    padding: 100px 60px;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
}

.about-button {
    flex-shrink: 0;
}

/* ===== BUTTON STYLES ===== */
.button {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 50px;
    background: #D9D9D9;
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background: #5C5C5C;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== WORKS SECTION ===== */
.works-section {
    background: linear-gradient(to bottom, #F5F5F5 0%, #E8E8E8 100%);
    padding: 100px 60px;
    text-align: center;
}

.works-title {
    font-size: 48px;
    font-weight: 200;
    color: rgba(0, 0, 0, 0.15);
    letter-spacing: 8px;
    margin-bottom: 80px;
    text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    border: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* ===== PROJECTS PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    padding: 80px 60px;
    text-align: center;
}

.page-title {
    font-size: 64px;
    font-weight: 200;
    letter-spacing: 12px;
    color: #000000;
    margin: 0;
}

.projects-grid-section {
    background-color: #FFFFFF;
    padding: 100px 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    text-decoration: none;
    color: #000000;
    transition: all 0.4s ease;
    display: block;
}

.project-image {
    width: 100%;
    height: 450px;
    background-color: #D9D9D9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-image {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.project-info {
    padding: 20px 10px;
    text-align: center;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 16px;
    color: #5C5C5C;
}

/* ===== PHOTOGRAPHY PAGE STYLES ===== */
.photography-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #000000;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.photography-banner:hover .banner-image {
    opacity: 0.85;
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.banner-title {
    font-size: 72px;
    font-weight: 200;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.photography-gallery-section {
    background-color: #FFFFFF;
    padding: 80px 40px;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background-color: #D9D9D9;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.masonry-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

/* Masonry item sizes */
.masonry-item.small {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item.small-h {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item.medium {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item.medium-h {
    grid-row: span 1;
    grid-column: span 2;
}

.masonry-item.large-h {
    grid-row: span 1;
    grid-column: span 2;
}

.masonry-item.large-v {
    grid-row: span 2;
    grid-column: span 1;
}

.masonry-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

/* Active navigation link indicator */
.nav-links a.active {
    color: #5C5C5C;
    font-weight: 400;
}

.nav-links a.active::after {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .photo-collage {
        height: 400px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-banner {
        padding: 60px 30px;
    }

    .about-section {
        padding: 60px 30px;
    }

    .works-section {
        padding: 60px 30px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .works-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 42px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-title {
        font-size: 48px;
    }

    .photography-banner {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .photo-collage {
        height: 300px;
    }

    .collage-center {
        width: 280px;
        height: 220px;
    }

    .collage-left,
    .collage-right {
        width: 200px;
        height: 160px;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
    }

    .masonry-item.small,
    .masonry-item.small-h,
    .masonry-item.medium,
    .masonry-item.medium-h,
    .masonry-item.large-h,
    .masonry-item.large-v,
    .masonry-item.large {
        grid-row: span 1;
        grid-column: span 1;
    }

    .page-title {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .banner-title {
        font-size: 36px;
    }
}
