:root {
            /* Core Brand Colour */
            --color-primary: #BFDBDA;
            --color-primary-light: #E6F1F0;
            --color-primary-dark: #8FB6B4;
            /* Backgrounds */
            --color-bg-main: #FAF9F7;
            --color-bg-section: #FFFFFF;
            --color-bg-soft: #E6F1F0;
            /* Text */
            --color-text-main: #3F4A4A;
            --color-text-muted: #6B7C7B;
            --color-text-inverse: #FFFFFF;
            /* Accents */
            --color-accent-blush: #E6B8B7;
            --color-accent-olive: #A3B18A;
            --color-accent-gold: #D6C9A8;
            /* UI Elements */
            --color-border-light: #E5E5E5;
            --color-border-primary: #BFDBDA;
            --color-shadow: rgba(0, 0, 0, 0.08);
            /* Buttons */
            --color-button-primary: #E6B8B7;
            --color-button-primary-hover: #D9A6A5;
            --color-button-secondary: #BFDBDA;
            --color-button-secondary-hover: #8FB6B4;
            /* Links */
            --color-link: #8FB6B4;
            --color-link-hover: #6FA3A0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--color-text-main);
            background-color: var(--color-bg-main);
            line-height: 1.6;
            padding-bottom: 100px;
        }

        .cursive {
            font-family: 'Pinyon Script', cursive;
            font-weight: 400;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--color-primary);
            z-index: 1000;
            box-shadow: 0 2px 10px var(--color-shadow);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            color: var(--color-text-inverse);
            text-decoration: none;
            flex: 1;
            text-align: center;
            white-space: nowrap;
            padding: 0 1rem;
        }

        nav {
            display: flex;
            gap: 4rem;
            flex: 1;
            align-items: center;
        }

        nav.nav-left {
            justify-content: flex-start;
            padding-left: 2rem;
        }

        nav.nav-right {
            justify-content: flex-end;
            padding-right: 2rem;
        }

        nav a {
            color: var(--color-text-inverse);
            text-decoration: none;
            font-size: 1.1rem;
            transition: opacity 0.3s;
            font-weight: 400;
            letter-spacing: 1px;
            padding: 0.5rem 0;
        }

        nav a:hover {
            opacity: 0.8;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-text-inverse);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Slider */
        .hero-slider {
            margin-top: 80px;
            height: calc(100vh - 180px);
            position: relative;
            overflow: hidden;
            width: 100%;
            background-color: var(--color-primary);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-primary);
        }

        .slide.active {
            opacity: 1;
        }

        .slide-image-wrapper {
            position: relative;
            max-width: 100%;
            max-height: 100%;
            display: inline-block;
        }

        .slide img {
            display: block;
            max-width: 100%;
            max-height: calc(100vh - 180px);
            height: auto;
            width: auto;
        }

        .photo-credit {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7),
                         -1px -1px 3px rgba(0, 0, 0, 0.5);
            z-index: 10;
            pointer-events: none;
        }

        /* Sections */
        section {
            padding: 5rem 0;
            width: 100%;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--color-text-main);
            text-align: center;
        }

        section p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--color-text-muted);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-alt {
            background-color: var(--color-bg-soft);
        }

        /* Venue List */
        .venue-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2rem;
            line-height: 1.8;
            text-align: center;
        }
        
        .venue-item {
            color: var(--color-text-main);
            font-size: 0.95rem;
        }

        /* Weddings Section */
        #weddings {
            padding: 3rem 0;
            background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 10%, transparent 45%);
        }
        
        #weddings h2 {
            font-size: 3rem;
            margin-bottom: 0.3rem;
        }
        
        .wedding-image {
            width: auto;
            max-width: 100%;
            max-height: 55vh;
            height: auto;
            margin: 2rem auto 3rem;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--color-shadow);
            object-fit: contain;
        }
        
        .testimonial-container {
            position: relative;
            max-width: 1000px;
            margin: 3rem auto;
            min-height: 350px;
            text-align: center;
            transition: min-height 0.5s ease;
        }
        
        .testimonial-quote {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            font-family: 'Pinyon Script', cursive;
            font-size: 2rem;
            color: var(--color-text-main);
            line-height: 1.6;
            padding: 2rem;
        }
        
        .testimonial-quote.active {
            opacity: 1;
        }
        
        .testimonial-author {
            display: block;
            margin-top: 1rem;
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--color-text-muted);
        }
        
        .wedding-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        /* Venue List Styling */
        .venue-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem 1.5rem;
            margin-top: 2rem;
            padding: 0 2rem;
        }

        .venue-list div {
            font-size: 0.95rem;
            color: var(--color-text-main);
            line-height: 1.4;
        }


        .gallery-item {
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--color-shadow);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            transition: background 0.3s ease;
            pointer-events: none;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--color-shadow);
        }

        .gallery-item:hover::after {
            background: rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Lightbox2 Custom Styling */
        .lb-outerContainer {
            border-radius: 8px;
        }

        .lb-dataContainer {
            border-radius: 0 0 8px 8px;
        }

        .lb-data .lb-details {
            font-family: 'Open Sans', sans-serif;
        }

        .lb-data .lb-caption {
            font-weight: 400;
            color: #FFFFFF;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
            align-items: start;
        }

        .contact-form-column {
            width: 100%;
        }

        .contact-images-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-image {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--color-shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--color-text-main);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--color-border-light);
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
            background-color: var(--color-bg-section);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--color-button-primary);
            color: var(--color-text-inverse);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            background-color: var(--color-button-primary-hover);
        }

        .submit-btn:disabled {
            background-color: var(--color-text-muted);
            cursor: not-allowed;
        }

        .alert {
            padding: 1rem;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--color-primary);
            color: var(--color-text-inverse);
            padding: 1.5rem 2rem;
            z-index: 999;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .footer-left {
            flex: 1;
            min-width: 200px;
        }

        .footer-phone {
            font-size: 1.1rem;
        }

        .footer-phone i {
            margin-right: 0.5rem;
        }

        .footer-center {
            flex: 1;
            text-align: center;
            min-width: 250px;
        }

        .footer-logo {
            font-size: 2.2rem;
            margin-bottom: 0.3rem;
            white-space: nowrap;
        }

        .footer-caption {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .footer-social {
            flex: 1;
            text-align: right;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.5rem;
            min-width: 200px;
        }

        .footer-social a {
            color: var(--color-text-inverse);
            font-size: 1.8rem;
            transition: opacity 0.3s;
        }

        .footer-social a:hover {
            opacity: 0.7;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--color-primary-light);
            color: var(--color-text-main);
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            border-top: 2px solid var(--color-primary);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
            flex: 1;
            color: var(--color-text-main);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .cookie-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: 1px solid var(--color-primary);
            background: transparent;
            color: var(--color-primary-dark);
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .cookie-btn:hover {
            background-color: var(--color-primary-light);
        }

        .cookie-btn.accept {
            background-color: var(--color-primary-dark);
            color: var(--color-text-inverse);
            border-color: var(--color-primary-dark);
        }

        .cookie-btn.accept:hover {
            background-color: var(--color-primary);;
            border-color: #D9A6A5;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .header-content {
                padding: 1rem 0;
            }

            nav {
                gap: 3rem;
            }

            nav.nav-left {
                padding-left: 1rem;
            }

            nav.nav-right {
                padding-right: 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            section h2 {
                font-size: 2.5rem;
            }

            .footer-logo {
                font-size: 1.8rem;
            }
            
            .hero-slider {
                height: calc(100vh - 180px);
            }
            
            .venue-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 150px;
            }

            .header-content {
                padding: 1rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .header-content {
                flex-wrap: wrap;
            }

            .logo {
                order: 1;
                flex: 0 0 auto;
            }

            .mobile-menu-toggle {
                order: 2;
            }

            nav {
                order: 3;
                flex-basis: 100%;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
            }

            nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }

            nav a {
                padding: 0.8rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav.nav-left,
            nav.nav-right {
                justify-content: flex-start;
                padding: 0;
            }

            .hero-slider {
                margin-top: 70px;
                height: calc(100vh - 220px);
            }
            
            .slide-image-wrapper {
                max-height: 100%;
            }
            
            .slide img {
                max-height: calc(100vh - 220px);
            }
            
            .photo-credit {
                top: 1rem;
                left: 1rem;
                font-size: 0.75rem;
            }
            
            .wedding-image {
                max-height: 45vh;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .venue-list {
                grid-template-columns: repeat(2, 1fr);
            }

            section {
                padding: 3rem 0;
            }
            
            #weddings {
                padding: 2rem 0;
            }

            .section-content {
                padding: 0 1.5rem;
            }

            section h2 {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-left,
            .footer-center,
            .footer-social {
                flex: none;
                text-align: center;
                min-width: auto;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-logo {
                font-size: 2rem;
            }

            footer {
                padding: 1rem 1.5rem;
            }

            .cookie-banner {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
                padding: 0.5rem 0.75rem;
            }
            
            .cookie-banner p {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
                gap: 0.5rem;
            }
            
            .cookie-btn {
                padding: 0.4rem 0.75rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-bottom: 160px;
            }

            .hero-slider {
                height: calc(100vh - 230px);
            }
            
            .slide-image-wrapper {
                max-height: 100%;
            }
            
            .slide img {
                max-height: calc(100vh - 230px);
            }
            
            .photo-credit {
                top: 0.75rem;
                left: 0.75rem;
                font-size: 0.7rem;
            }
            
            #weddings h2 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            .wedding-image {
                max-height: 40vh;
                margin: 1rem auto;
            }

            .wedding-gallery {
                grid-template-columns: 1fr;
            }
            
            .venue-list {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                gap: 1.5rem;
            }
            
            .contact-images-column {
                gap: 1.5rem;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .footer-logo {
                font-size: 1.5rem;
            }
            
            .cookie-banner {
                padding: 0.4rem 0.5rem;
            }
            
            .cookie-banner p {
                font-size: 0.75rem;
                line-height: 1.2;
            }
            
            .cookie-btn {
                padding: 0.35rem 0.6rem;
                font-size: 0.75rem;
            }

            .footer-caption {
                font-size: 0.75rem;
            }

            .footer-phone {
                font-size: 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            nav a {
                font-size: 1rem;
            }
        }