:root {
            --leather-brown: #5D4037;
            --tan-leather: #A1887F;
            --dark-brown: #3E2723;
            --rustic-brown: #1e110f;
            --cream: #EFEBE9;
            --warm-white: #FFF8E1;
            --rust: #8D6E63;
            --shadow: rgba(62, 39, 35, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Crimson Text', serif;
            background-color: var(--cream);
            color: var(--dark-brown);
            overflow-x: hidden;
        }

        /* Parallax Hero Section */
        .parallax-container {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(rgba(62, 39, 35, 0.4), rgba(62, 39, 35, 0.5)),
                        url('header-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            transform: translateZ(0);
            will-change: transform;
        }

        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 2;
            padding: 2rem;
        }

        .hero-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(4rem, 12vw, 10rem);
            color: var(--warm-white);
            letter-spacing: 0.15em;
            text-shadow: 3px 3px 6px var(--shadow), -1px -1px 2px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-tagline {
            font-size: clamp(1.2rem, 4vw, 2rem);
            color: var(--cream);
            font-style: italic;
            letter-spacing: 0.05em;
            text-shadow: 2px 2px 4px var(--shadow);
            animation: fadeInUp 1.4s ease-out;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--warm-white);
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::after {
            content: '↓';
            display: block;
            margin-top: 0.5rem;
            font-size: 1.5rem;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(93, 64, 55, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 3rem;
            box-shadow: 0 4px 20px var(--shadow);
        }

        .nav-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--warm-white);
            letter-spacing: 0.1em;
            text-decoration: none;
            text-shadow: 2px 2px 4px var(--shadow);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--warm-white);
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--tan-leather);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--warm-white);
            transition: all 0.3s ease;
        }

        /* About Section */
        .about-section {
            padding: 8rem 3rem;
            background: var(--warm-white);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                var(--leather-brown) 0%, 
                var(--tan-leather) 50%, 
                var(--leather-brown) 100%);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 5rem);
            color: var(--leather-brown);
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--rust);
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 1.9;
            color: var(--dark-brown);
            margin-top: 3rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 8rem 3rem;
            background: var(--rustic-brown);
        }

        .gallery-intro {
            text-align: center;
            margin-bottom: 5rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 8px 30px var(--shadow);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(62, 39, 35, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--warm-white);
            letter-spacing: 0.1em;
        }

        /* Placeholder images for gallery */
        .gallery-placeholder {
            background: linear-gradient(135deg, var(--rust) 0%, var(--leather-brown) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--cream);
            letter-spacing: 0.1em;
            text-align: center;
            padding: 2rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 3rem;
            background: var(--leather-brown);
            color: var(--warm-white);
            text-align: center;
        }

        .contact-section .section-title {
            color: var(--warm-white);
        }

        .contact-section .section-title::after {
            background: var(--tan-leather);
        }

        .contact-content {
            max-width: 700px;
            margin: 4rem auto 0;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            font-size: 1.3rem;
            line-height: 1.8;
        }

        .contact-info a {
            color: var(--tan-leather);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--warm-white);
        }

        /* Footer */
        footer {
            padding: 3rem;
            background: var(--dark-brown);
            color: var(--tan-leather);
            text-align: center;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
        }

        .rb {
            color: var(--rustic-brown);
            text-decoration: none;
            transition: all 0.3s;
        }
        .rb:hover {
            color: var(--cream);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(93, 64, 55, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.4s ease;
                padding: 2rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 3.2rem;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }

            .about-section,
            .gallery-section,
            .contact-section {
                padding: 5rem 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .parallax-bg {
                background-attachment: scroll;
            }
        }

        /* Texture overlay for rustic feel */
        .texture-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.03;
            z-index: 9999;
            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='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }