/* ============================
   DANIEL PHOTOGRAPHY - STYLES
   Cream/Off-white theme matching
   namanverma.com design
   ============================ */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: #f5f0eb;
    color: #2c2825;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ============================
   HEADER / NAVIGATION
   Centered logo on top, nav below
   ============================ */
.site-header {
    background: #f5f0eb;
    padding: 30px 40px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-logo {
    margin-bottom: 18px;
}

.site-logo a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #2c2825;
}

.site-logo .logo-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    color: #3a3530;
}

.site-logo .logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #8a8078;
    margin-top: 2px;
}

.main-nav {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b6055;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3a3530;
    transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #2c2825;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: absolute;
    right: 25px;
    top: 35px;
}

.hamburger span {
    width: 25px;
    height: 1.5px;
    background: #2c2825;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(245, 240, 235, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #6b6055;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #2c2825;
}

/* ============================
   HERO SLIDESHOW
   Centered with padding, not full-bleed
   ============================ */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 40px 40px;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Navigation Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 5;
    padding: 15px;
    transition: color 0.3s ease;
    font-family: serif;
    line-height: 1;
}

.slide-arrow:hover {
    color: rgba(255, 255, 255, 0.9);
}

.slide-arrow.prev {
    left: 8px;
}

.slide-arrow.next {
    right: 8px;
}

/* ============================
   QUOTE / TAGLINE SECTION
   ============================ */
.quote-section {
    padding: 50px 40px 40px;
    text-align: center;
    background: #f5f0eb;
    max-width: 800px;
    margin: 0 auto;
}

.quote-section .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.4;
    color: #2c2825;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.quote-section .quote-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.9;
    color: #6b6055;
    max-width: 520px;
    margin: 0 auto 25px;
}

.quote-section .quote-emphasis {
    font-style: normal;
    font-weight: 600;
    color: #2c2825;
}

.quote-section .quote-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: #6b6055;
    margin-bottom: 20px;
}

.quote-section .quote-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2c2825;
}

/* ============================
   SECTION TITLES
   ============================ */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
    color: #2c2825;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    text-align: center;
    color: #8a8078;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

/* ============================
   B&W MOSAIC / COLLAGE GRID
   ============================ */
.collage-section {
    padding: 15px 40px 50px;
    background: #f5f0eb;
}

.collage-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
}

.collage-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.collage-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.collage-item.wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.collage-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Collage arrows */
.collage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 240, 235, 0.85);
    border: none;
    color: #6b6055;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
    padding: 10px 14px;
    font-family: serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.collage-arrow:hover {
    background: rgba(245, 240, 235, 0.95);
    color: #2c2825;
}

.collage-arrow.prev {
    left: -45px;
}

.collage-arrow.next {
    right: -45px;
}

/* ============================
   REAL LOVE STORIES SECTION
   ============================ */
.stories-section {
    padding: 60px 40px 50px;
    background: #f5f0eb;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 770px;
    margin: 0 auto;
}

.story-card {
    cursor: pointer;
    display: block;
}

.story-card .story-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.story-card .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.03);
}

.story-card .story-text {
    padding: 12px 0 5px;
    text-align: left;
}

.story-card .story-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8078;
}

/* ============================
   PHOTO GALLERY GRID
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item.landscape {
    aspect-ratio: 4/3;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ============================
   STORIES PAGE - Full-width banners
   ============================ */
.stories-page-section {
    padding: 15px 0 60px;
    background: #f5f0eb;
}

.stories-page-section .section-title,
.stories-page-section .section-subtitle {
    padding: 0 40px;
}

.stories-list {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-entry {
    margin-bottom: 25px;
    cursor: pointer;
}

.story-entry .story-banner {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/7;
}

.story-entry .story-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-entry:hover .story-banner img {
    transform: scale(1.02);
}

.story-entry .story-label {
    padding: 10px 0 18px;
}

.story-entry .story-label h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b6055;
    margin-bottom: 2px;
}

.story-separator {
    text-align: center;
    padding: 5px 0 25px;
    color: #c5bdb5;
    font-size: 0.8rem;
    letter-spacing: 8px;
}

/* ============================
   GALLERIES PAGE - Masonry
   ============================ */
.galleries-section {
    padding: 15px 40px 60px;
    background: #f5f0eb;
}

.galleries-masonry {
    columns: 3;
    column-gap: 4px;
    max-width: 1100px;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.masonry-item:hover img {
    transform: scale(1.03);
}

/* ============================
   ABOUT SECTION / PAGE
   ============================ */
.about-section {
    padding: 15px 40px 70px;
    background: #f5f0eb;
}

.about-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #2c2825;
}

.about-text .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #6b6055;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6b6055;
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Awards Section */
.awards-section {
    padding: 55px 40px;
    background: #f5f0eb;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    width: 90px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.award-item:hover {
    opacity: 0.8;
}

.award-item img {
    width: 100%;
    height: auto;
}

/* Featured In Section */
.featured-section {
    padding: 45px 40px;
    background: #f5f0eb;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.featured-logo {
    height: 22px;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.featured-logo:hover {
    opacity: 0.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
    padding: 15px 40px 60px;
    background: #f5f0eb;
}

.testimonials-container {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 45px 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-item .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-item blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: #6b6055;
    margin-bottom: 22px;
}

.testimonial-photo {
    margin-bottom: 18px;
}

.testimonial-photo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.testimonial-item .client-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a9a099;
}

/* ============================
   ENQUIRE / CONTACT
   ============================ */
.enquire-section {
    padding: 15px 40px 70px;
    background: #f5f0eb;
}

.enquire-inner {
    max-width: 580px;
    margin: 0 auto;
}

.enquire-intro {
    text-align: center;
    margin-bottom: 45px;
}

.enquire-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #2c2825;
}

.enquire-intro p {
    font-size: 0.8rem;
    font-weight: 300;
    color: #8a8078;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a8078;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #2c2825;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: #2c2825;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: #f5f0eb;
    color: #2c2825;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.submit-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 13px 40px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    color: #2c2825;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    background: #2c2825;
    color: #f5f0eb;
    border-color: #2c2825;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    padding: 45px 40px 35px;
    text-align: center;
    background: #f5f0eb;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #b5ada5;
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    z-index: 2001;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .galleries-masonry {
        columns: 2;
    }
    .about-inner {
        gap: 45px;
    }
    .collage-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .main-nav {
        display: none;
    }
    .site-header {
        padding: 20px 20px 15px;
    }
    .header-inner {
        flex-direction: row;
        justify-content: center;
    }
    .site-logo {
        margin-bottom: 0;
    }
    .site-logo .logo-script {
        font-size: 2rem;
    }

    .hero-section {
        padding: 10px 15px 25px;
    }

    .quote-section {
        padding: 35px 22px;
    }
    .quote-section .quote-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }
    .gallery-item.wide {
        grid-column: span 2;
    }

    .collage-section {
        padding: 10px 15px 35px;
    }
    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stories-section {
        padding: 45px 20px 40px;
    }
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 320px;
    }

    .stories-list {
        padding: 0 15px;
    }

    .about-section {
        padding: 15px 22px 45px;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-text h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .testimonial-item {
        padding: 30px 8px;
    }
    .testimonial-item blockquote {
        font-size: 0.95rem;
    }

    .enquire-section {
        padding: 15px 22px 45px;
    }
    .enquire-intro h1 {
        font-size: 1.6rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .galleries-section {
        padding: 15px 15px 35px;
    }
    .galleries-masonry {
        columns: 2;
        column-gap: 2px;
    }
    .masonry-item {
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.wide {
        grid-column: span 1;
    }
    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .galleries-masonry {
        columns: 1;
    }
}
