:root {
    --font-primary: 'Outfit', sans-serif;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.8);
    --color-overlay: rgba(0, 0, 0, 0.5);
    /* Brand Colors - Cyan/Teal from Logo */
    --color-accent: #44D9E6;
    --color-accent-hover: #7AE4EF;

    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-border: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/* Legacy menu styles removed */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: var(--font-primary);
    overflow: hidden;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== Video Background ==================== */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: url('assets/images/bg.webp') no-repeat center center;
    background-size: cover;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 2s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
    transition: var(--transition-smooth);
}

/* ==================== Cloud Transition ==================== */
.cloud-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    animation: fadeOutClouds 3s ease-out 0.5s forwards;
    background: linear-gradient(to bottom, #ffffff, #e8e8e8);
    overflow: hidden;
}

.cloud-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    opacity: 0.9;
    animation: expandClouds 3.5s ease-out forwards;
}

.cloud-layer:nth-child(2) {
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 0.9) 30%, rgba(255, 255, 255, 0) 60%);
    animation-delay: 0.1s;
    animation-duration: 3.2s;
}

.cloud-layer:nth-child(3) {
    width: 180vw;
    height: 180vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0) 50%);
    animation-delay: 0.2s;
    animation-duration: 3.8s;
}

@keyframes fadeOutClouds {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes expandClouds {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ==================== Main Content ==================== */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    padding-top: 80px;
    /* Shift content down as requested */
}

/* ==================== Hero Section ==================== */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInContent 1.5s ease-out 2s forwards;
    transition: var(--transition-smooth);
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    top: 0;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.btn-start {
    position: relative;
    padding: 1rem 2.8rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-start::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-start:hover::before {
    width: 400px;
    height: 400px;
}

.btn-start:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
}

.btn-start span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-start:hover .arrow-icon {
    transform: translateX(5px);
}

/* ==================== Premium Blooming Menu ==================== */
.premium-menu {
    position: fixed;
    top: 50%;
    right: 3rem;
    z-index: 9000;
    transform: translateY(-50%) scale(0);
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-menu.visible {
    transform: translateY(-50%) scale(1);
}

.menu-toggle-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px rgba(68, 217, 230, 0.4);
    transition: all 0.5s ease;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.menu-toggle-btn img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    /* transition: transform 0.5s ease; */
}

.menu-toggle-btn:hover {
    transform: scale(1.1);
    border-color: var(--color-accent);
    box-shadow: 0 0 35px rgba(68, 217, 230, 0.6);
}

/* .premium-menu.open .menu-toggle-btn img {
    transform: rotate(180deg);
} */

/* Fan Menu Wrapper */
.menu-fan {
    position: absolute;
    top: 50%;
    right: 50%;
    /* Center of the button */
    width: 0;
    height: 0;
    z-index: -1;
}

.menu-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    transform-origin: bottom right;

    background: #fff;
    /* Create Wedge Shape via Masking */
    border-top-left-radius: 100%;
    /* The circular arc */
    /* Clip a 36-degree triangle */
    clip-path: polygon(100% 100%, 0% 100%, 0% 27.35%);

    text-decoration: none;
    display: flex;
    /* Content layout handled by inner wrapper */

    filter: drop-shadow(-2px -2px 5px rgba(0, 0, 0, 0.2));

    /* Default closed state */
    transform: rotate(-90deg) scale(0);
    opacity: 0;

    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
    transition-delay: calc(0.05s * var(--i));
}

/* Open State */
/* Open State */
.premium-menu.open .menu-card {
    opacity: 1;
    /* 
       Start Angle: 90 deg (Bottom of Fan).
       Unrotated Wedge Position: [180, 216].
       Target 1: [90, 126]. -> Rotate -90.
       Target i: -90 + (i-1)*36.
    */
    transform: rotate(calc(-90deg + (var(--i) - 1) * 36deg)) scale(1);
}


/* Alternating Colors */
.menu-card:nth-child(even) {
    background: var(--color-accent);
    color: #fff;
}

.menu-card:nth-child(odd) {
    background: #fff;
    color: var(--color-accent);
    /* Invert text color for white cards */
}

.menu-card:hover {
    background: #FFD700;
    color: #333;
    z-index: 100;
    /* Pop out slightly */
    transform: rotate(calc(-90deg + (var(--i) - 1) * 36deg)) scale(1.1) !important;
}

.menu-card .card-content {
    position: absolute;
    /* Position the content block near the center of the wedge tip */
    bottom: 25px;
    left: 25px;
    width: 100px;
    text-align: center;

    /* Rotate to match the wedge angle (Bisector is ~18 deg from horizontal) */
    transform-origin: center center;
    transform: rotate(18deg);
    /* Aligns text with the slice radius */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

.menu-card .icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.menu-card .text {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Specific position adjustments */
/* Since all cards share the same internal geometry, one rule might fit all if the radial alignment works. */

/* Fix for Hover Z-Index fighting */
.premium-menu:hover .menu-card {
    opacity: 0.8;
}

.premium-menu .menu-card:hover {
    opacity: 1;
}

/* ==================== Screen Overlays ==================== */
.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.screen-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.screen-content {
    width: 92%;
    max-width: 1200px;
    max-height: 85vh;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUpFade 0.5s ease-out;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.1);
}

.screen-content::-webkit-scrollbar {
    width: 8px;
}

.screen-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.screen-content::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screen-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.screen-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.screen-header p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--color-text-secondary);
    font-weight: 300;
}

.btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2001;
}

.btn-close svg {
    width: 24px;
    height: 24px;
}

.btn-close:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    transform: rotate(90deg) scale(1.1);
}

/* ==================== Virtual Tour Screen ==================== */
.tour-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.tour-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

/* ==================== Info Screen ==================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.feature-list,
.amenities-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li,
.amenities-list li {
    padding: 0.6rem 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-list li:hover,
.amenities-list li:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.check-icon {
    color: var(--color-accent);
    margin-right: 0.8rem;
    font-weight: 700;
}

.map-card {
    grid-column: span 2;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    margin-top: 1rem;
}

.map-placeholder span {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.spec-item:hover {
    background: rgba(68, 217, 230, 0.1);
    border-color: var(--color-accent);
}

.spec-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.3rem;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ==================== Gallery Styles ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--color-bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    background: var(--color-accent);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-bounce);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ==================== Lightbox ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 3001;
}

.lightbox-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 3002;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
}

/* ==================== Contact Screen ==================== */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.info-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ==================== Buttons ==================== */
.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

/* ==================== Loading Indicator ==================== */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

.loading-indicator.active {
    display: block;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-logo {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .premium-menu {
        top: auto;
        bottom: 40px;
        right: auto;
        left: 50%;
        /* Center horizontally */
        transform: translateX(-50%) scale(0);
        /* Override desktop transform */
    }

    .premium-menu.visible {
        transform: translateX(-50%) scale(1);
    }

    .menu-fan {
        /* Rotate the whole fan 90deg clockwise to face Up (180 to 360 range) */
        transform: rotate(90deg);
    }

    .menu-card {
        width: 240px;
        /* Slightly smaller radius */
        height: 240px;
        border-top-left-radius: 240px;
    }

    .menu-toggle-btn {
        width: 70px;
        height: 70px;
    }

    .menu-toggle-btn img {
        width: 50%;
        height: 50%;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .menu-card {
        width: 180px;
        /* Smaller radius for phones */
        height: 180px;
        border-top-left-radius: 180px;
    }

    .premium-menu {
        bottom: 30px;
    }

    .menu-card .card-content {
        bottom: 20px;
        left: 20px;
        width: 80px;
    }

    .menu-card .icon {
        font-size: 1.2rem;
    }

    .menu-card .text {
        font-size: 0.7rem;
    }

    .hero-logo {
        max-width: 240px;
    }
}

/* ==================== Accessibility ==================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



.fog-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    /* Crucial: lets clicks pass through to content */
}

.fog-img {
    position: absolute;
    height: 100vh;
    width: 300vw;
    z-index: 1;
    pointer-events: none;
}

.fog-img-first {
    background: url("assets/images/fog-1.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    animation: marquee 60s linear infinite;
}

.fog-img-second {
    background: url("assets/images/fog-2.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }


    100% {
        transform: translate3d(-200vw, 0, 0);
    }
}

/* ==================== Premium Loading Screen ==================== */
#initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f1214;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#initial-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(68, 217, 230, 0.3));
    /* animation: loaderSpin 1.5s linear infinite; */
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--color-accent), #FFD700);
    border-radius: 3px;
    animation: loaderProgress 2s infinite ease-in-out;
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderProgress {
    0% {
        left: -30%;
        width: 30%;
    }

    50% {
        left: 30%;
        width: 50%;
    }

    100% {
        left: 100%;
        width: 30%;
    }
}

/* ==================== Back to Home Button ==================== */
.btn-back {
    position: fixed;
    top: 30px;
    left: 5%;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-back:hover {
    background: var(--color-accent, #44D9E6);
    border-color: var(--color-accent, #44D9E6);
    color: #000000;
    transform: translateX(-5px);
    box-shadow: 0 4px 20px rgba(68, 217, 230, 0.4);
}

.btn-back i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-2px);
}

@media (max-width: 768px) {
    .btn-back {
        top: 20px;
        left: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}