:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #F4C430;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-color: #f0f0f0;
    --text-muted: #aaaaaa;
    --white: #ffffff;
    --card-bg: #1a1a1a;
    --transition: all 0.3s ease;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0f0a 50%, #0a0a0a 100%);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Premium Bokeh Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(244, 196, 48, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Particle Container */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(244, 196, 48, 0.4) 50%, transparent 100%);
    animation: float linear infinite;
    opacity: 0;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Ensure content is above background */
.hero,
.section,
footer {
    position: relative;
    z-index: 10;
}

.navbar {
    position: fixed;
    z-index: 1000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--primary-gold);
}

.section {
    padding: 80px 0;
    scroll-margin-top: var(--nav-height);
}

.dark-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1533174072545-e8d4aa97edf9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /*background-color: var(--darker-bg);*/
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px 0;
}

.center-line {
    margin: 15px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px;
    /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.site-version {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    transition: var(--transition);
}

.site-version:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1533174072545-e8d4aa97edf9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

.extras-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #000;
    border-radius: 8px;
}

.shadow-box:hover {
    transform: translate(5px, 5px);
    box-shadow: 10px 10px 0px rgba(212, 175, 55, 0.2);
}

/* Video Carousel Container */
.video-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide.active {
    opacity: 1;
    z-index: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-nav button {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-nav button:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.video-caption {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    text-transform: capitalize;
}

.v-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: opacity 0.3s ease;
}

/* Watermark for gallery images - Specific selector to override .gallery-item img */
.gallery-item .v-watermark-gallery {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 120px !important;
    height: auto !important;
    z-index: 15;
    pointer-events: none;
    opacity: 0.7;
    object-fit: contain !important;
    /* Override the 'cover' from generic img */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
    transition: opacity 0.3s ease;
}

.gallery-item:hover .v-watermark-gallery {
    opacity: 0.9;
}

.video-carousel-container:hover .v-watermark {
    opacity: 0.6;
}

/* Services */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #222;
    border-color: var(--primary-gold);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #333;
    text-transform: uppercase;
}

.featured-gold .tag {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: bold;
}

/* Events Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 0.9rem;
}

.mt-5 {
    margin-top: 40px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    /* Pre-loading color */
}


.carousel-container .v-watermark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 160px !important;
    height: auto !important;
    z-index: 15;
    pointer-events: none;
    opacity: 0.6;
    object-fit: contain !important;
    /* Override the 'cover' from generic img */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
    transition: opacity 0.3s ease;
}

.gallery-item:hover .v-watermark-gallery {
    opacity: 0.9;
}


.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--primary-gold);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* Extras */
.ui-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.extra-item-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.extra-item-row:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.extra-item-row.active-row {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.extra-item-row i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 30px;
    text-align: center;
}

.extra-item-row span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* QR Code */
.qr-code-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    max-width: 220px;
    margin-top: 30px;
}

.qr-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    filter: brightness(0.9) contrast(1.1);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.full-width {
    width: 100%;
}

footer {
    padding: 40px 0;
    background-color: #000;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #111;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        height: calc(100vh - var(--nav-height));
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .split-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        box-sizing: border-box;
    }

    .extras-grid.ui-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 25px auto 0;
        width: 100%;
        max-width: 100%;
        padding: 5px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .extra-item-row {
        flex-direction: column;
        padding: 15px 10px;
        text-align: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Restore consistent border */
    }

    .extra-item-row:hover {
        transform: translateY(-5px);
    }

    .extra-item-row i {
        font-size: 1.5rem;
        width: auto;
    }

    .extra-item-row span {
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Responsive watermark sizing for mobile */
    .v-watermark {
        width: 60px !important;
        top: 10px;
        right: 10px;
    }

    .gallery-item .v-watermark-gallery {
        width: 60px !important;
        top: 8px;
        right: 8px;
    }

    .carousel-container .v-watermark {
        width: 70px !important;
        top: 8px;
        right: 8px;
    }
}

/* --- Service Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--primary-gold);
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--primary-gold);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

#modalTitle {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Responsive aspect ratio instead of fixed height */
    max-height: 80vh;
    /* Prevent it from being too tall on huge screens */
    overflow: hidden;
    border-radius: 10px;
    display: none;
    background-color: #000;
    /* Ensure background is black */
}

/* Unified slide styles for both images and videos */
.modal-slide-item {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
    /* Apply directly to the item (which is an img) */
    background-color: #000;
}

.modal-slide-item.active {
    display: block;
    animation: fadeIn 0.5s;
}

/* Image slides */
.modal-slide-item img,
.modal-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

/* Video slides */
.modal-slide-item.video-slide {
    width: 100%;
    height: 100%;
    background: #000;
}

.modal-slide-item.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--primary-gold);
    color: black;
}

.modal-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.modal-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    display: none;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-desc {
    color: #ddd;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(13, 13, 13, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 20px 0;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-text a:hover {
    color: var(--secondary-gold);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 120px;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}