        :root {
            --gold: #CDA442;
            --dark-bg: rgb(22, 22, 22);
            --section-bg: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--dark-bg);
            color: white;
            font-family: Quicksand, sans-serif;
            line-height: 1.6;
        }

        header {
            width: 100vw;
            height: 220px;
            /* changed from 100px → 220px */
            padding: 0 50px;
            box-sizing: border-box;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0;
            z-index: 1111;
            transition: height 0.3s ease;
            /* smooth animation */
            background-color: var(--dark-bg);
        }

        .collapse {
            width: 100%;
            justify-content: space-between;
        }

        .navbar-toggler {
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(346deg) brightness(112%) contrast(106%);
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus,
        .navbar-toggler:focus-visible {
            text-decoration: none;
            outline: 0;
            box-shadow: none;
        }

        header h1 {
            font-size: 30px;
            color: white;
            margin: 0;
            letter-spacing: 1px;
            font-weight: 300;
            text-transform: uppercase;
            -webkit-font-smoothing: antialiased;
            transition: all 0.4s ease;
        }

        nav {
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
        }

        header a.header_link {
            display: inline-block;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 300ms ease;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            color: white;
            overflow-wrap: break-word;
            text-decoration: none;
            margin-right: 20px;
            transition: all 0.4s ease;
            font-family: Quicksand, sans-serif;
        }

        header a.header_link.green {
            color: rgb(84, 214, 94);
            font-weight: 700;
            border-bottom: 1px solid rgb(84, 214, 94);
        }

        .header_link img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        Header a:hover {
            color: #757575;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .header_logo {
            transition: all 0.4s ease;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 220px;
            padding: 50px;
        }

        .hero-section img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .sipline-title {
            font-size: 8rem;
            font-weight: 900;
            color: var(--gold);
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .hero-tagline {
            font-size: 1.5rem;
            color: var(--gold);
            letter-spacing: 0.2em;
            font-weight: 300;
        }

        .video-section {
            background-color: var(--section-bg);
            padding: 5rem 0;
        }

        .video-container {
            position: relative;
            background: #000;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .video-placeholder {
            width: 100%;
            height: 400px;
            background: url('/placeholder.svg?height=400&width=800') center/cover;
            position: relative;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .gallery-section {
            padding: 5rem 0;
            background-color: var(--dark-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
            height: 550px;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .4s ease;
        }

        .gallery-item::before {
            content: "";
            background: rgba(0, 0, 0, 0.3);
            /* darker overlay */
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transition: opacity .3s ease;
            opacity: 1;
        }

        .gallery-item:hover::before {
            opacity: 0;
            /* fades out smoothly */
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }


        .drinks-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .about-section {
            background-color: var(--section-bg);
            padding: 5rem 0;
        }

        .about-title {
            text-align: center;
            font-size: 64px;
            color: var(--gold);
            margin-bottom: 4rem;
        }

        .about-card {
            text-align: center;
            height: 100%;
        }

        .sl-logo img {
            border-radius: 100%;
            width: 378.5px;
            margin-bottom: 24px;
        }

        .sl2-logo img {
            width: 378.5px;
            margin-bottom: 24px;
        }

        .sl_content {
            padding: 0 20px;
        }

        .sl_text {
            overflow: hidden;
            transition: all .4s ease;
        }

        .see-more {
            display: inline-block;
            margin-top: 8px;
            color: #3498db;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            color: rgb(160, 204, 58);
        }

        .see-more:hover {
            text-decoration: underline;
        }

        .about-card h5 {
            color: var(--gold);
            font-size: 24px;
            margin-bottom: 24px;
            transition: all .4s ease;
        }

        .about-card ul {
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .about-card p,
        .about-card li {
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 24px;
            transition: all .4s ease;
        }

        .about-card li {
            margin-bottom: 0;
            transition: all .4s ease;
        }

        .subscribe-section {
            background-color: #000;
            padding: 5rem 0;
            text-align: center;
        }

        .subscribe-title {
            font-size: 48px;
            color: #FFF;
            margin-bottom: 2rem;
        }

        .email-form {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }

        .email-input {
            flex: 1;
            padding: 1rem;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 0;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .signup-btn {
            background: rgb(184, 234, 68);
            color: black;
            border: none;
            padding: 1rem 2.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 17px;
            text-transform: uppercase;
        }

        .signup-btn:hover {
            background: #B8941F;
        }

        .contact-section {
            background-color: var(--section-bg);
            padding: 5rem 0;
        }

        .contact-title {
            text-align: center;
            font-size: 2.5rem;
            color: rgb(184, 234, 68);
            margin-bottom: 3rem;
        }

        .contact_para {
            text-align: center;
            font-size: 24px;
            color: #FFF;
            text-align: center;
            margin-bottom: 1rem;
        }

        .contact_para2 {
            text-align: center;
            font-size: 15px;
            color: rgb(169, 169, 169);
            text-align: center;
            margin: 2rem 0 1rem;
        }

        .contact_para2 a {
            color: rgb(184, 234, 68);
            text-decoration: none;
        }

        .contact-form {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-form .form-check-label {
            font-size: 20px;
            color: rgb(164, 164, 164);
        }

        input.form-control {
            background: #000;
            border: 1px solid transparent;
            color: white;
            margin-bottom: 1.7rem;
            padding: 1rem;
            border-radius: 0;
        }

        textarea.form-control {
            background: #000;
            border: 1px solid transparent;
            color: white;
            margin-bottom: 1rem;
            border-radius: 0;
            padding: 1rem;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-control:focus {
            background: #000;
            border-color: var(--gold);
            color: white;
            box-shadow: none;
        }

        .download-section {
            background-color: #FFF;
            padding: 4rem 0;
            text-align: center;
        }

        .download-title {
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 15rem;
        }

        .app-button {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .app-button:hover {
            transform: scale(1.05);
        }

        .app-button img {
            width: 300px;
            height: auto;
        }

        .footer {
            background-color: #000;
            padding: 2rem 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--gold);
            color: black;
            padding: 1rem;
            border-radius: 10px;
            max-width: 300px;
            z-index: 1000;
        }

        .cookie-banner button {
            background: black;
            color: var(--gold);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-top: 0.5rem;
            cursor: pointer;
        }

        video {
            width: 100%;
            object-fit: cover;
        }

        .check {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 6px;
            position: relative;
            min-height: 24px;
            padding-left: 34px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: pointer;
            font-size: 18px;
            color: #9e9ea8;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

        .check::before,
        .check::after {
            content: "";
            position: absolute;
            transition: all 0.3s ease;
        }

        .check::before {
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            border: 2px solid #4a4a4f;
            background-color: transparent;
        }

        .check::after {
            top: 11px;
            left: 8px;
            opacity: 0;
        }

        .check a {
            color: #0055ff;
        }

        .check>input[type=checkbox],
        .check>input[type=radio] {
            display: none;
        }

        .check:has(input:checked)::before {
            background-color: transparent;
            border-color: rgb(184, 234, 68);
        }

        .check:has(input:checked)::after {
            opacity: 1;
        }

        .check:has(input[type=checkbox])::before {
            border-radius: 6px;
        }

        .check:has(input[type=checkbox])::after {
            width: 7px;
            height: 11px;
            transform: translateY(-60%) rotate(45deg);
            border-right: 2px solid rgb(184, 234, 68);
            border-bottom: 2px solid rgb(184, 234, 68);
        }

        .check:has(input[type=radio])::before {
            border-radius: 50%;
        }

        .check:has(input[type=radio])::after {
            width: 8px;
            height: 8px;
            background-color: #fff;
            border-radius: 50%;
            top: 8px;
        }

        .check:has(input:disabled) {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .footer_links a {
            color: rgb(184, 234, 68);
        }

        .dropdown .dropdown-toggle {
            background: transparent;
            width: 40px;
            height: 40px;
            padding: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dropdown .dropdown-toggle::after {
            display: none;
        }

        .dropdown .dropdown-toggle img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .dropdown-menu[data-bs-popper] {
            right: 0;
            left: unset;
            margin-top: 10px;
        }

        .dropdown-menu {
            background-color: var(--dark-bg);
            box-shadow: 0 0 10px 2px rgb(33 33 33);
        }

        .dropdown-item {
            color: #FFF;
        }

        .dropdown-item:focus,
        .dropdown-item:hover {
            color: #FFF;
            background-color: transparent;
        }

        @media (max-width: 1199px) {
            .sl-logo img {
                width: 200px;
            }

            .sl2-logo img {
                width: 90%;
            }

            .sl_content {
                padding: 0 10px;
            }

            .about-card p,
            .about-card li {
                font-size: 16px;
            }

            .about-title {
                text-align: center;
                font-size: 54px;
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                position: absolute;
                top: 55px;
                left: 4px;
                border: 1px solid rgb(184, 234, 68);
                width: fit-content;
                padding: 20px;
                background-color: var(--dark-bg);
                box-shadow: 0 0 10px 2px rgb(33 33 33);
            }

            .hero-section {
                min-height: auto;
            }

            .gallery-grid {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 1rem;
                height: 400px;
            }

            header a.header_link.green {
                color: #FFF;
                border: none;
                padding: 0 0 20px;
            }

            header a.header_link img {
                display: none;
            }

            .app-buttons {
                display: flex;
                justify-content: center;
                gap: 5rem;
            }
        }

        @media (max-width: 768px) {
            .sipline-title {
                font-size: 4rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                height: 600px;
            }


            .email-form {
                flex-direction: column;
            }

            .app-buttons {
                align-items: center;
                gap: 1rem;
                justify-content: space-around;
            }

            .app-button img {
                width: 140px;
            }

            .about-title {
                font-size: 44px;
            }

            .about-card p,
            .about-card li {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                height: auto;
            }

            .sl-logo img,
            .sl2-logo img {
                width: 80%;
            }

            .gallery-item {
                height: 400px;
            }

            .hero-section {
                padding: 0 10px;
            }

            .about-section {
                padding: 0;
            }

            .subscribe-title {
                font-size: 38px;
            }

            .contact-title {
                margin-bottom: 1rem;
            }

            .contact-section {
                background-color: var(--section-bg);
                padding: 3rem 0;
            }
        }