@font-face {
    font-family: 'Cronde';
    src: url('fonts/CRONDERegular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Norwester';
    src: url('fonts/norwester.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Color Scheme */
    --bg-color: #001223;
    --text-color: #cde2ff;
    --heading-color: #0e79b2;
    --accent-color: #e5e4e2;

    /* Derived Colors for Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    /* Luxury Gradients */
    --orb-teal: rgba(14, 121, 178, 0.15);
    --orb-amber: rgba(255, 160, 0, 0.08);
    --orb-violet: rgba(120, 40, 200, 0.1);
    --card-hover: rgba(14, 121, 178, 0.1);
    /* Based on heading color */
}

/* Ambient Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    /* Ensure background stays dark */
    background-color: var(--bg-color);
}

.bg-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.15;
    /* Defined visibility */
    /* Liquid Distortion + Blur */
    filter: url(#liquid-flow) blur(20px);
    z-index: -2;
    transform: scale(1.1);
    /* Initial scale, JS will take over */
    transition: transform 0.1s ease-out;
    /* Smooths out mouse movement */
    will-change: transform, filter;
}

/* Old animation removed for SVG performance */

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float-orb 20s infinite ease-in-out alternate;
    will-change: transform;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    top: -10%;
    left: -10%;
    background: var(--orb-teal);
    animation-duration: 25s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    bottom: -10%;
    right: -10%;
    background: var(--orb-amber);
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    top: 40%;
    left: 40%;
    background: var(--orb-violet);
    animation-duration: 28s;
    animation-delay: -10s;
    opacity: 0.4;
}

@keyframes float-orb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Norwester', sans-serif;
    /* Update main text font */
    line-height: 1.5;
    /* Adjusted for better modular scale with Norwester */
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fix for Norwester's high baseline */
p,
.subtitle,
.color-info,
button,
input,
textarea {
    position: relative;
    top: 0.1em;
    /* Optical adjustment to push text down */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cronde', serif;
    /* Update heading font */
    color: var(--heading-color);
    font-weight: normal;
    /* Cronde might not need bolding */
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(14, 121, 178, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 300;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(14, 121, 178, 0.3);
}

/* Sections */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Dynamic abstract background elements */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--heading-color);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #003366;
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-bottom: 1rem;
    display: block;
}



.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.nav-btn {
    text-decoration: none;
    text-align: center;
    min-width: 250px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.nav-btn h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.nav-btn p {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.7;
}

.nav-btn:hover {
    background: rgba(14, 121, 178, 0.1);
    border-color: var(--heading-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-btn:hover h3 {
    text-shadow: 0 0 15px rgba(14, 121, 178, 0.6);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 100%;
    max-width: 600px;
    margin: 4rem auto;
    opacity: 0.3;
}

/* Render Gallery */
.render-gallery {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    position: relative;
    z-index: 2;
}

.render-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.render-item:nth-child(even) {
    flex-direction: row-reverse;
}

.render-image-container {
    flex: 1;
    position: relative;
    max-width: 800px;
    border-radius: 4px;
    overflow: hidden;
    /* Luxury fade-into-background effect */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    transition: transform 0.6s ease-out;
    /* Ensure background helps mask the ether behind it */
    background-color: var(--bg-color);
}

.render-image-container img {
    width: 100%;
    display: block;
    opacity: 1;
    /* Was 0.8, causing background bleed */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hover effect: Light up and slight scale */
.render-image-container:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.render-text {
    flex: 0.8;
    max-width: 400px;
}

.render-text h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.render-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Staggered offsets for visual interest */
.render-item:nth-child(1) .render-image-container {
    margin-top: 0;
}

.render-item:nth-child(2) .render-image-container {
    margin-top: 3rem;
}

.render-item:nth-child(3) .render-image-container {
    margin-top: -2rem;
}

/* Responsive */
@media (max-width: 900px) {

    .render-item,
    .render-item:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .render-image-container {
        width: 100%;
        /* Fade edges on mobile */
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    }
}

.render-image-container {
    cursor: pointer;
    /* Indicate clickability */
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 35, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(0, 18, 35, 0.9);
    /* Darker glass for modal */
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 0;
    /* padding handled inside */
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--heading-color);
}

.modal-body {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modal-image-wrapper {
    flex: 1.2;
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    flex: 0.8;
    padding: 3rem;
}

.modal-text h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-text p {
    font-size: 1.2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-image-wrapper {
        width: 100%;
        height: 300px;
    }

    .modal-text {
        padding: 2rem;
    }
}



/* ===========================
   Hero Text Animation
   =========================== */
.hero-title {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: var(--heading-color);
    /* Fallback */
    text-shadow: none !important;
    /* Move shadow to char */
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px);
    animation: heroReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;

    /* Move Luxury Styles Here */
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(14, 121, 178, 0.4);
}

.char-1 {
    animation-delay: 0.1s;
}

.char-2 {
    animation-delay: 0.2s;
}

.char-3 {
    animation-delay: 0.3s;
}

.char-4 {
    animation-delay: 0.4s;
}

.char-5 {
    animation-delay: 0.5s;
}

.reveal-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
    display: block;
    /* Ensure it respects transform */
}

.reveal-divider {
    opacity: 0;
    transform: scaleX(0);
    animation: dividerExpand 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 1.0s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerExpand {
    to {
        opacity: 0.3;
        /* match original divider opacity */
        transform: scaleX(1);
    }
}

/* The Mark Section */
.mark-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.mark-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.mark-text {
    flex: 1;
}

.mark-text h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.mark-text .subtitle {
    margin-bottom: 2rem;
    display: inline-block;
}

.mark-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-align: justify;
}

.mark-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mark-visual img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: transform 0.6s ease;
    background-color: var(--bg-color);
    /* Prevent background bleed */
}

.mark-visual:hover img {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .mark-content {
        flex-direction: column-reverse;
        /* Text on top/bottom? Usually text first on mobile is better if header, but visually image first might be nice. Let's stick to column normal or reverse. */
        flex-direction: column;
        text-align: center;
    }

    .mark-text p {
        text-align: center;
        margin: 0 auto 1.5rem auto;
    }
}

/* Video Section */
.video-section {
    padding: 4rem 0 8rem 0;
}

.video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.video-wrapper video {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.4s ease;
    opacity: 1;
}

.play-button svg {
    margin-left: 5px;
    /* Visual optical center fix */
}

/* Hover effects */
.video-wrapper:hover .play-button {
    background: rgba(14, 121, 178, 0.3);
    /* Electric Blue tint */
    transform: translate(-50%, -50%) scale(1.1);
}

/* Playing state */
.video-wrapper.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

.hidden {
    opacity: 0;
    transform: translateY(-50px);
    /* Start FROM THE TOP as requested */


    transition: opacity 1s ease-out,
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* "Easy ease" */
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Menu Page Styles
   =========================== */

.menu-section {
    margin-bottom: 6rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--heading-color);
    text-shadow: 0 0 20px rgba(14, 121, 178, 0.4);
}

/* Exclusive Highlights */
.highlights-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.menu-highlight {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    /* Drop Shadow for separation */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    /* Initial border color */
    border-color: rgba(255, 255, 255, 0.1);
}

/* Glow Effect & Animation */
.glow-effect {
    animation: luxuriousPulse 4s infinite alternate;
}

@keyframes luxuriousPulse {
    0% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 10px rgba(14, 121, 178, 0.1);
        border-color: rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(14, 121, 178, 0.3);
        border-color: rgba(14, 121, 178, 0.5);
    }
}

.menu-highlight h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--heading-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-tag {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.highlight-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.price-tag {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(14, 121, 178, 0.5);
}

/* Signature List */
.signature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.drink-item {
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.drink-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.drink-header h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.drink-header .price {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.drink-meta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--heading-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.drink-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Classic Grid */
.classic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.classic-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.3rem;
    color: var(--text-color);
}

.dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
    position: relative;
    top: -5px;
}

.back-link {
    color: var(--heading-color);
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #fff;
    border-color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .highlights-grid {
        flex-direction: column;
    }

    .drink-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .classic-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Events Page Styles
   =========================== */

.event-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(0, 18, 35, 0.7);
    /* Slightly darker backing */
}

.poster-container {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 0 30px rgba(14, 121, 178, 0.2);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.poster-container img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.poster-container:hover img {
    transform: scale(1.03);
}

.event-details {
    flex: 1.5;
    text-align: left;
}

.event-desc {
    font-size: 1.2rem;
    line-height: 1.8;
}

.band-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-left: 2px solid var(--heading-color);
    border-radius: 0 8px 8px 0;
}

.band-summary h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.band-summary p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
    color: var(--text-color);
}

@media (max-width: 900px) {
    .event-layout {
        flex-direction: column;
    }

    .poster-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===========================
   VIP Page Styles
   =========================== */

.vip-layout {
    display: flex;
    flex-direction: row-reverse;
    /* Image on right */
    gap: 4rem;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 10, 20, 0.8);
}

.vip-image-container {
    flex: 1;
    position: relative;
    height: 600px;
    /* Tall impressive image */
}

.vip-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Masking for seamless blend */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.vip-content {
    flex: 1;
    padding: 3rem;
    padding-left: 2rem;
}

.vip-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.vip-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vip-benefits li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--heading-color);
    line-height: 1;
    text-shadow: 0 0 10px rgba(14, 121, 178, 0.6);
}

.benefit-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    font-family: 'Cronde', serif;
}

.benefit-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .vip-layout {
        flex-direction: column;
    }

    .vip-image-container {
        width: 100%;
        height: 300px;
    }

    .vip-image-container img {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 20%);

    }

    .vip-content {
        padding: 2rem;
    }
}

/* Premium Staggered Transition */
.vip-layout {
    animation: fadeInPanel 1s ease-out forwards;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[class*="reveal-step-"] {
    opacity: 0;
    transform: translateY(30px);
    animation: premiumReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.reveal-step-1 {
    animation-delay: 0.2s;
}

/* Image */
.reveal-step-2 {
    animation-delay: 0.5s;
}

/* Title */
.reveal-step-3 {
    animation-delay: 0.7s;
}

/* Subtitle */
.reveal-step-4 {
    animation-delay: 0.9s;
}

/* Desc & Divider */
.reveal-step-5 {
    animation-delay: 1.1s;
}

/* List */
.reveal-step-6 {
    animation-delay: 1.3s;
}

/* button */

@keyframes premiumReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Platinum Accents (Requested Update) */
.benefit-icon {
    color: #e5e4e2;
    /* Platinum */
    text-shadow: 0 0 15px rgba(229, 228, 226, 0.6);
    /* silvery glow */
}

.benefit-text strong {
    color: #e5e4e2;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    /* override previous if needed */
}

.nav-btn.platinum-border {
    border-color: #e5e4e2;
    box-shadow: 0 0 20px rgba(229, 228, 226, 0.1);
}