@import url('https://fonts.cdnfonts.com/css/keroll');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    border: none !important;
    outline: none;
    background: transparent;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover {
    color: #00BFFF;
    transform: translateY(-2px);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links li a {
        font-size: 13px;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo img {
        height: 50px;
    }

    .nav-links li a {
        font-size: 12px;
    }
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            overflow-x: hidden;
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        /* Background Image */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomIn 20s ease-out infinite alternate;
        }

        @keyframes zoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        /* Elegant overlay with gradient */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.75) 30%,
                rgba(0, 0, 0, 0.35) 50%,
                rgba(0, 0, 0, 0.55) 100%
            );
            z-index: 1;
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            height: 100%;
            color: white;
            text-align: center;
            padding: 30px 40px 40px 40px;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* NS Photography - Keroll Script */
        .brand-name {
    font-family: 'Keroll', serif;
    font-size: clamp(30px, 6vw, 100px);
    color: #ffffff;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    letter-spacing: 8px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    animation: trackingIn 1.2s ease-out 0.8s both;

}


        /* Decorative line */
        .divider {
            width: 300px;
            height: 2px;
            background: linear-gradient(
                to right,
                transparent,
                rgba(255, 255, 255, 0.8),
                transparent
            );
            margin: 15px 0;
            position: relative;
            animation: expandWidth 1.5s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 300px;
            }
        }

        .divider::before,
        .divider::after {
            content: '◆';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #ffffff;
            font-size: 12px;
        }

        .divider::before {
            left: -20px;
        }

        .divider::after {
            right: -20px;
        }

        /* NITESH SHARMA - Cinzel Font */
        .photographer-name {
            font-family: 'Cinzel', serif;
            font-size: clamp(20px, 2vw, 40px);
            font-weight: 600;
            letter-spacing: clamp(0px, 0vw, 0px);
            color: #ffffff;
            text-transform: uppercase;
            text-shadow: 
                2px 2px 6px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 0, 0, 0.8);
            margin-bottom: 25px;
            animation: trackingIn 1.2s ease-out 0.8s both;
        }

        @keyframes trackingIn {
            from {
                letter-spacing: -0.5em;
                opacity: 0;
            }
            to {
                letter-spacing: clamp(8px, 2vw, 22px);
                opacity: 1;
            }
        }

        /* Stylish Quote */
        .hero-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(20px, 2.5vw, 36px);
            font-style: italic;
            font-weight: 300;
            color: #f5f5f5;
            max-width: 900px;
            line-height: 1.8;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            position: relative;
            padding: 0 60px;
            animation: fadeIn 1.5s ease-out 1.2s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -20px;
            font-size: clamp(60px, 8vw, 100px);
            font-family: 'Cinzel', serif;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1;
        }

        .hero-quote::after {
            content: '"';
            position: absolute;
            right: 0;
            bottom: -40px;
            font-size: clamp(60px, 8vw, 100px);
            font-family: 'Cinzel', serif;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1;
        }

        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            z-index: 2;
            pointer-events: none;
        }

        .corner-top-left {
            top: 40px;
            left: 40px;
            width: 80px;
            height: 80px;
            border-top: 3px solid rgba(255, 255, 255, 0.4);
            border-left: 3px solid rgba(255, 255, 255, 0.4);
            animation: cornerExpand 1s ease-out 0.5s both;
        }

        .corner-top-right {
            top: 40px;
            right: 40px;
            width: 80px;
            height: 80px;
            border-top: 3px solid rgba(255, 255, 255, 0.4);
            border-right: 3px solid rgba(255, 255, 255, 0.4);
            animation: cornerExpand 1s ease-out 0.7s both;
        }

        .corner-bottom-left {
            bottom: 40px;
            left: 40px;
            width: 80px;
            height: 80px;
            border-bottom: 3px solid rgba(255, 255, 255, 0.4);
            border-left: 3px solid rgba(255, 255, 255, 0.4);
            animation: cornerExpand 1s ease-out 0.9s both;
        }

        .corner-bottom-right {
            bottom: 40px;
            right: 40px;
            width: 80px;
            height: 80px;
            border-bottom: 3px solid rgba(255, 255, 255, 0.4);
            border-right: 3px solid rgba(255, 255, 255, 0.4);
            animation: cornerExpand 1s ease-out 1.1s both;
        }

        @keyframes cornerExpand {
            from {
                width: 0;
                height: 0;
                opacity: 0;
            }
            to {
                width: 80px;
                height: 80px;
                opacity: 1;
            }
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                padding: 100px 20px 30px 20px;
            }

            .divider {
                width: 200px;
            }

            .hero-quote {
                padding: 0 40px;
            }

            .corner-decoration {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-quote {
                padding: 0 30px;
            }

            .hero-quote::before,
            .hero-quote::after {
                font-size: 50px;
            }
        }

        .welcome-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 20% 50%, rgba(240, 240, 240, 0.5) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(235, 235, 235, 0.4) 0%, transparent 50%),
                        #ffffff;
        }

        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            z-index: 1;
        }

        .content-wrapper {
            max-width: 900px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out;
            padding: 0 1.5rem;
            overflow: hidden;
        }

        .logo-initial {
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            max-width: 100%;
        }

        .logo-line {
            display: block;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .welcome-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 2.5rem;
            color: #333333;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

        .divider {
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #999999, transparent);
            margin: 0 auto 2.5rem;
            opacity: 0;
            animation: expandWidth 1s ease-out 0.6s forwards;
        }

        .description {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            line-height: 2.2;
            color: #1a1a1a;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        .tagline {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: #555555;
            margin-top: 3rem;
            letter-spacing: 0.05em;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.2s forwards;
        }

        .decorative-corners {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 1px solid #cccccc;
        }

        .corner-tl {
            top: 5%;
            left: 5%;
            border-right: none;
            border-bottom: none;
            animation: slideInCorner 1s ease-out 0.5s both;
        }

        .corner-br {
            bottom: 5%;
            right: 5%;
            border-left: none;
            border-top: none;
            animation: slideInCorner 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 100px;
                opacity: 1;
            }
        }

        @keyframes shimmer {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes slideInCorner {
            from {
                opacity: 0;
                transform: translate(-10px, -10px);
            }
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        @media (max-width: 768px) {
            .welcome-section {
                padding: 3rem 1rem;
                min-height: 70vh;
            }

            .content-wrapper {
                padding: 0 1rem;
            }

            .logo-initial {
                font-size: 1.8rem !important;
                letter-spacing: 0.05em !important;
                margin-bottom: 1.5rem !important;
                gap: 0.5rem;
                flex-direction: row !important;
                flex-wrap: nowrap;
                justify-content: center !important;
            }

            .logo-line {
                word-break: keep-all;
                white-space: nowrap;
                font-size: 1.8rem;
                display: inline;
            }
            
            .logo-line:first-child::after {
                content: ' ';
            }

            .welcome-text {
                font-size: 0.95rem;
                letter-spacing: 0.12em;
                margin-bottom: 1.5rem;
            }

            .description {
                font-size: 1rem;
                line-height: 1.8;
                padding: 0 0.5rem;
            }

            .tagline {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }

            .decorative-corners {
                width: 40px;
                height: 40px;
            }

            .divider {
                width: 80px;
                margin: 0 auto 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .welcome-section {
                padding: 2.5rem 0.75rem;
                min-height: auto;
            }

            .content-wrapper {
                padding: 0 0.75rem;
            }

            .logo-initial {
                font-size: 1.4rem !important;
                letter-spacing: 0.03em !important;
                margin-bottom: 1rem !important;
                gap: 0.4rem;
                flex-direction: row !important;
                justify-content: center !important;
            }

            .logo-line {
                word-break: keep-all;
                white-space: nowrap;
                font-size: 1.4rem;
                display: inline;
            }
            
            .logo-line:first-child::after {
                content: ' ';
            }

            .welcome-text {
                font-size: 0.85rem;
                letter-spacing: 0.08em;
                margin-bottom: 1rem;
            }

            .description {
                font-size: 0.9rem;
                line-height: 1.7;
                padding: 0 0.25rem;
                margin-bottom: 1.5rem;
            }

            .tagline {
                font-size: 0.8rem;
                padding: 0 0.25rem;
                margin-top: 2rem;
            }

            .decorative-corners {
                width: 30px;
                height: 30px;
            }

            .corner-tl {
                top: 3%;
                left: 3%;
            }

            .corner-br {
                bottom: 3%;
                right: 3%;
            }

            .divider {
                width: 60px;
                margin: 0 auto 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .logo-initial {
                font-size: 1.2rem !important;
                letter-spacing: 0.02em !important;
                flex-direction: row !important;
                gap: 0.3rem;
                justify-content: center !important;
            }

            .logo-line {
                word-break: keep-all;
                white-space: nowrap;
                font-size: 1.2rem;
                display: inline;
            }
            
            .logo-line:first-child::after {
                content: ' ';
            }

            .content-wrapper {
                padding: 0 0.5rem;
            }
        }

        @media (max-width: 360px) {
            .logo-initial {
                font-size: 1.1rem !important;
                letter-spacing: 0.01em !important;
                flex-direction: row !important;
                gap: 0.25rem;
                justify-content: center !important;
            }

            .logo-line {
                word-break: keep-all;
                white-space: nowrap;
                font-size: 1.1rem;
                display: inline;
            }
            
            .logo-line:first-child::after {
                content: ' ';
            }

            .welcome-section {
                padding: 2rem 0.5rem;
            }

            .content-wrapper {
                padding: 0 0.5rem;
            }
        }

        @media (max-width: 320px) {
            .logo-initial {
                font-size: 1rem !important;
                letter-spacing: 0 !important;
                flex-direction: row !important;
                gap: 0.2rem;
                justify-content: center !important;
            }
            
            .logo-line {
                word-break: keep-all;
                white-space: nowrap;
                font-size: 1rem;
                display: inline;
            }
            
            .logo-line:first-child::after {
                content: ' ';
            }
        }


         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f8f8;
        }

        .wedding-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #888;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .gallery-item {
            background: white;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .image-container {
            width: 100%;
            height: 450px;
            background-color: #2a2a2a;
            position: relative;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .placeholder-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            opacity: 0.3;
        }

        .item-content {
            padding: 30px 25px;
        }

        .item-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .item-location {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: #999;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .cta-container {
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background-color: #1a1a1a;
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 20px 60px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border-radius: 50px;
        }

        .cta-button:hover {
            background-color: #ffffff;
        }

        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .image-container {
                height: 350px;
            }
        }

     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #f5f5f5;
        }

        .overall-wedding-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            color: #000;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: 18px;
            color: #ffffff;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 48px;
            color: #000;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 20px;
            color: #333333;  
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 36px;
            }

            .stat-number {
                font-size: 40px;
            }
        }
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .testimonials-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 48px;
            color: #000;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 0px;
            font-family: Arial, sans-serif;
        }

        .section-header p {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
        }

        .testimonials-wrapper {
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .testimonial-card {
            max-width: 700px;
            text-align: center;
        }

        .testimonial-text {
            font-size: 24px;
            color: #000;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 40px;
            min-height: 120px;
        }

        .testimonial-author {
            font-size: 16px;
            color: #000;
            font-weight: 600;
            margin-bottom: 8px;
            font-style: normal;
        }

        .testimonial-location {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-style: normal;
        }

        .navigation-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 50px;
        }

        .nav-button {
            width: 50px;
            height: 50px;
            border: 2px solid #000;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 5s ease;
        }

        .nav-button:hover {
            background: #000;
            color: #fff;
        }

        .dots-container {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #000;
        }

        @media (max-width: 968px) {
            .section-header h2 {
                font-size: 48px;
            }

            .testimonial-text {
                font-size: 20px;
                min-height: auto;
            }
        }

        @media (max-width: 640px) {
            .section-header h2 {
                font-size: 36px;
            }

            .testimonial-text {
                font-size: 16px;
            }
        }


/* ============================================
   FOOTER SECTION - Professional & Clean Design
   ============================================ */

.footer-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #e8e8e8;
    padding: 80px 0 0;
    position: relative;
    margin-top: 0;
    clear: both;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-top: 20px;
}

/* Footer Column */
.footer-column {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Footer Description */
.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #d4a574;
    color: #0f0f0f;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

/* Footer Heading */
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5e6d3;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4a574;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #d4a574;
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item strong {
    color: #e8e8e8;
    display: block;
    margin-bottom: 5px;
}

/* Get In Touch Button */
.get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4a574, #c99564);
    color: #0f0f0f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.get-in-touch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.get-in-touch-btn i {
    font-size: 1.1rem;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    margin-bottom: 30px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.copyright strong {
    color: #d4a574;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4a574;
}

.separator {
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-heading {
        font-size: 1.3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .get-in-touch-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-media {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



/* ============================================
   NEW INSTAGRAM GALLERY SECTION - Clean Design
   ============================================ */

.instagram-gallery-section {
    max-width: 100%;
    margin: 0;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.gallery-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instagram-tag {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #d4a574;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 300;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d4a574 0%, #f5e6d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

/* Profile Section */
.profile-section-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.profile-link-new {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #e8e8e8;
    padding: 15px 35px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(100, 100, 100, 0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.profile-link-new:hover {
    border-color: rgba(150, 150, 150, 0.6);
    transform: translateY(-2px);
}

.logo-container-new {
    position: relative;
    z-index: 2;
}

.logo-new {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-link-new:hover .logo-new {
    transform: scale(1.05);
}

.profile-info-new {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.profile-name-new {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.post-count-new {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 300;
}

/* Horizontal Gallery */
.gallery-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.gallery-horizontal::-webkit-scrollbar {
    height: 8px;
}

.gallery-horizontal::-webkit-scrollbar-track {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
}

.gallery-horizontal::-webkit-scrollbar-thumb {
    background: #d4a574;
    border-radius: 10px;
}

.gallery-horizontal::-webkit-scrollbar-thumb:hover {
    background: #f5e6d3;
}

.gallery-item-new {
    position: relative;
    min-width: 400px;
    height: 500px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out backwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-new:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-new:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-new:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-new:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-new:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item-new:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-new:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .gallery-item-new {
        min-width: 300px;
        height: 400px;
    }

    .profile-link-new {
        padding: 15px 25px;
    }

    .logo-new {
        width: 60px;
        height: 60px;
    }

    .profile-name-new {
        font-size: 1.2rem;
    }
}

/* ====================================
   YOUTUBE SECTION STYLING
   ==================================== */

.youtube-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.youtube-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.youtube-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.youtube-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.youtube-section .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #b8b8b8;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50.625%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    background: #000;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Hover effect for video wrapper */
.video-wrapper:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-section {
        padding: 60px 15px;
    }
    
    .youtube-section .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .youtube-section .section-subtitle {
        font-size: 1rem;
    }
    
    .video-wrapper {
        border-radius: 10px;
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(212, 175, 55, 0.2);
    }
}

@media (max-width: 480px) {
    .youtube-section {
        padding: 40px 10px;
    }
    
    .youtube-section .section-title {
        font-size: 1.8rem;
    }
    
    .youtube-section .section-subtitle {
        font-size: 0.9rem;
    }
}
/* ============================================================
   YOUTUBE VIDEO SECTION STYLES
   ============================================================ */
.video-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c9a961 50%, 
        transparent 100%);
}

.video-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #c9a961;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.video-section .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #999;
    font-style: italic;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
    border: 2px solid rgba(201, 169, 97, 0.3);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 15px;
    }
    
    .video-section .section-title {
        font-size: 2rem;
    }
    
    .video-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-section .section-title {
        font-size: 1.5rem;
    }
}
/* ===================================
   Video Section - Gallery Style
   =================================== */

/* Override video section header to match gallery */
.video-showcase-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-showcase-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d4a574 0%, #f5e6d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.video-showcase-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.video-showcase-section .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #d4a574;
    text-transform: uppercase;
    margin-top: 25px;
    font-weight: 300;
}

/* Video Card - Gallery Style */
.video-card {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 165, 116, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 100, 100, 0.3);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(212, 165, 116, 0.2);
    border-color: rgba(150, 150, 150, 0.5);
}

/* Video Description - Gallery Style */
.description-content {
    background: rgba(30, 30, 30, 0.7);
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 3px solid #d4a574;
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0.3px;
    font-weight: 300;
}

/* Feature Items - Gallery Style */
.video-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 40, 40, 0.8);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(100, 100, 100, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(60, 60, 60, 0.9);
    border-color: rgba(150, 150, 150, 0.6);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #e8e8e8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive - Gallery Style */
@media (max-width: 768px) {
    .video-showcase-section .section-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-showcase-section .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
}
/* ===================================
   CUSTOM VIDEO CONTROLS
   =================================== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    object-fit: cover;
}

/* Custom Controls Container */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.custom-controls.show {
    opacity: 1;
}

.video-container:hover .custom-controls,
.video-container.paused .custom-controls {
    opacity: 1;
}

/* Control Buttons */
.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

/* Play/Pause Button */
.play-pause-btn {
    width: 50px;
    height: 50px;
}

/* Time Display */
.time-display {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Progress Bar Wrapper */
.progress-bar-wrapper {
    flex-grow: 1;
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

/* Progress Bar Input */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    margin: 0;
    border-radius: 3px;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4a574;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.progress-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4a574;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.progress-bar::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.progress-bar::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right, 
        #d4a574 var(--progress, 0%), 
        rgba(255, 255, 255, 0.2) var(--progress, 0%));
    border-radius: 3px;
}

.progress-bar::-moz-range-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.progress-bar::-moz-range-progress {
    background: #d4a574;
    height: 6px;
    border-radius: 3px;
}

/* Volume Button - Muted State */
.volume-btn.muted svg path {
    fill: #ff4444;
}

/* Loading State */
.video-container.loading::after {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* Error State */
.video-container.error::after {
    content: 'Video failed to load';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff4444;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Controls */
@media (max-width: 768px) {
    .custom-controls {
        padding: 15px 10px;
        gap: 10px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
    }
    
    .time-display {
        font-size: 12px;
    }
    
    .menu-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .custom-controls {
        gap: 8px;
        padding: 10px;
    }
    
    .control-btn {
        width: 30px;
        height: 30px;
    }
    
    .control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .play-pause-btn {
        width: 35px;
        height: 35px;
    }
}
/* ==========================================
   NEW VIDEO SHOWCASE SECTION STYLES
   ========================================== */

/* Import Google Fonts for the video section */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500&family=Playfair+Display:wght@400;500;600;700&display=swap');

.video-showcase-section {
    background-color: #f8f6f3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.video-section-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.video-content-wrapper {
    width: 100%;
}

/* Header Section */
.video-header-section {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(40px);
    animation: videoFadeInUp 1s ease-out forwards;
}

.video-subtitle {
    color: #c8a882;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    animation: videoFadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.video-main-title {
    font-size: 5rem;
    font-weight: 700;
    color: #d4af7a;
    letter-spacing: 0.02em;
    line-height: 1;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    margin: 0;
}

.video-title-divider {
    width: 6rem;
    height: 1.5px;
    background-color: #c8a882;
    margin: 2rem auto 0;
}

/* Video Player Section */
.video-player-section {
    opacity: 0;
    transform: translateY(40px);
    animation: videoFadeInUp 1s ease-out 0.4s forwards;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: black;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

/* Description Section */
.video-description-section {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(40px);
    animation: videoFadeInUp 1s ease-out 0.6s forwards;
}

.video-description-box {
    border: 1px solid #d4d0c8;
    padding: 3rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-description-title {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: #8b7355;
    margin-bottom: 2rem;
}

.video-description-content {
    color: #4a4a4a;
}

.video-description-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.video-description-text-italic {
    color: #8b7355;
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    margin-top: 2rem;
    line-height: 1.8;
}

/* Animations */
@keyframes videoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Video Controls Styling */
video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1.2);
}

video::-webkit-media-controls-timeline {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 0 10px;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-main-title {
        font-size: 4rem;
    }
    
    .video-description-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 2rem 1rem;
    }
    
    .video-subtitle {
        font-size: 0.625rem;
    }
    
    .video-main-title {
        font-size: 3rem;
    }
    
    .video-description-box {
        padding: 2rem;
    }
    
    .video-description-title {
        font-size: 2rem;
    }
    
    .video-description-text {
        font-size: 1rem;
    }
    
    .video-description-text-italic {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .video-main-title {
        font-size: 2.5rem;
    }
    
    .video-description-box {
        padding: 1.5rem;
    }
    
    .video-description-title {
        font-size: 1.75rem;
    }
}

/* View Gallery Button Styles */
.view-gallery-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #ffffff;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .view-gallery-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.view-gallery-btn:hover {
    background-color: #f8f8f8;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-container::before {
    opacity: 1;
}
/* ============================================================ */
/* GALLERY MODAL STYLES */
/* ============================================================ */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10002;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.gallery-close:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.gallery-modal-content {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-modal-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-modal-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-modal-location i {
    color: #FFD700;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 40px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    line-height: 1;
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-nav-btn:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.gallery-progress {
    width: 100%;
    max-width: 900px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.gallery-progress-bar {
    height: 100%;
    background-color: #FFD700;
    width: 10%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    .gallery-prev {
        left: -60px;
    }
    
    .gallery-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .gallery-modal-title {
        font-size: 32px;
    }
    
    .gallery-modal-location {
        font-size: 12px;
    }
    
    .gallery-slider-container {
        height: 400px;
        max-width: 100%;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-modal-title {
        font-size: 24px;
    }
    
    .gallery-slider-container {
        height: 300px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
/* Hamburger Menu Button Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.hamburger-icon .dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-icon {
    display: none;
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

.hamburger-menu.active .hamburger-icon {
    display: none;
}

.hamburger-menu.active .close-icon {
    display: block;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #000000;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
        padding: 40px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
}