/* --- 1. Variables & Global Resets --- */
:root {
    --primary-orange: #FF6B00;
    --white: #ffffff;
    --dark: #1a1a1a;
    --grey: #666666;
    --light-grey: #f8f9fa;
    --bg-light: #fdfdfd;
    --transition-smooth: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--dark); 
    background: var(--bg-light); 
    line-height: 1.6; 
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* --- 2. Navigation --- */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 8%; 
    z-index: 1000; 
    background: var(--white);
    transition: var(--transition-smooth); 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled { 
    padding: 10px 8%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    border-bottom: 1px solid var(--primary-orange); 
}

.logo img { 
    height: 60px; 
    width: auto; 
    transition: var(--transition-smooth); 
}

.navbar.scrolled .logo img { height: 60px; }

.nav-links { display: flex; list-style: none; align-items: center; }

.nav-links li { position: relative; }

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    margin: 0 18px;
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    transition: var(--transition-fast);
    position: relative; /* Fixed: Required for underline positioning */
}

.nav-links a:hover { color: var(--primary-orange); }

/* Nav Link Underline Logic */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after { width: 100%; }

/* --- 3. Buttons --- */
.btn-reserve {
    background: var(--primary-orange); 
    color: var(--white) !important;
    padding: 12px 25px; 
    border: 1px solid var(--primary-orange);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
}

.btn-reserve:hover {
    background: var(--dark);
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}


/* --- 4. Hero Section with Cinematic Zoom --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 0 8%;
    /* This clips the zooming image so it stays inside the hero box */
    overflow: hidden; 
}

.hero::before {
    content: '';
    position: absolute;
    /* We start at -2% to give the zoom "bleeding" room at the edges */
    top: -2%;
    left: -2%;
    width: 104%; 
    height: 104%;
    
    /* 'cover' ensures the mountains/hotel look natural, not stretched */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), 
                url('../assets/Cover-Page/Cover-Photo-4.webp') center/cover no-repeat;
    
    z-index: -1;
    
    /* 25s creates a very slow, expensive-feeling drift */
    animation: heroDeepZoom 25s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    will-change: transform; /* Hardware acceleration */
}

/* The Animation Logic */
@keyframes heroDeepZoom {
    0% {
        transform: scale(1);
    }
    100% {
        /* A 1.1 zoom is the "sweet spot" for luxury websites */
        transform: scale(1.1); 
    }
}

/* Keeps your text and buttons steady while the background moves */
.hero-content {
    position: relative;
    z-index: 1;
}

/* Ensure hero content stays on top and centered */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title { 
    font-size: clamp(2.5rem, 8vw, 5rem); 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.hero-title span { font-style: italic; font-weight: 400; }

.subtitle {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
    cursor: default;
}

.subtitle:hover {
    letter-spacing: 8px; 
    color: var(--white);
}

.accent-line { 
    width: 60px; 
    height: 2px; 
    background: var(--primary-orange); 
    margin: 25px auto; 
}

.hero-description { 
    max-width: 600px; 
    margin: 0 auto 35px; 
    font-size: 1.1rem; 
    font-weight: 300; 
    color: rgba(255, 255, 255, 0.9);
}

/* Ensure the Book Now button matches the height and style of the others */
.hero-btns .btn-reserve {
    padding: 15px 35px; /* Matches btn-primary-aesthetic padding */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Keep the sharp architectural look */
    transition: var(--transition-smooth);
}

.hero-btns .btn-reserve:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    background-color: var(--white);
    color: var(--primary-orange) !important;
    border-color: var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px; /* Keeps buttons uniform on mobile */
        margin: 30px auto 0;
    }
    
    .hero-btns a {
        width: 100%; /* Makes all 3 buttons the same width on mobile */
        text-align: center;
    }

        /* 1. Target the list items, but NOT the very last one */
    .nav-links li:not(:last-child)::after {
        content: "✦";
        display: block; /* Puts the symbol on its own line between links */
        color: var(--dark); /* Uses your luxury gold */
        font-size: 1rem;
        margin-top: 20px; /* Space above the star */
        margin-bottom: 10px; /* Adjusts the gap for the next link */
        opacity: 0.6;
        text-align: center;
        font-family: serif; /* Ensures the symbol looks elegant */
    }
}

.hero-btns {
    display: flex;
    gap: 20px; /* Increased gap for 3 buttons */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Prevents overlap on smaller screens */
    margin-top: 30px;
}

/* Aesthetic Button Variants */
.btn-primary-aesthetic {
    padding: 16px 35px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary-aesthetic::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--white);
    transition: left 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}

.btn-primary-aesthetic:hover::before { left: 0; }

.btn-primary-aesthetic:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.btn-secondary-aesthetic {
    padding: 16px 35px;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-secondary-aesthetic:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
    backdrop-filter: blur(5px);
    padding-left: 45px;
}

/* --- 5. Rooms Section --- */
.rooms { padding: 120px 8%; background: var(--light-grey); }

.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 60px; }

/* --- Room Grid & Link Reset --- */
.room-card-link {
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Keeps text color from original styling */
    display: block;
    height: 100%;
}

.room-grid { 
display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;   
}

.room-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.room-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- Ultra-Smooth Room Image Hover --- */
.room-img {
height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden; /* Clips the zoom and overlay inside the image area */
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.room-card:hover .room-img {
transform: scale(1.05); /* The subtle zoom you asked for */
}

.room-img::after {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Subtle dark gray gradient/overlay. Adjust alpha (0.4) for darkness. */
    background: rgba(30, 30, 30, 0.4); 
    
    /* Start invisible */
    opacity: 0; 
    transition: opacity 0.5s ease;
    z-index: 1; /* Sits above the image */
}

.room-card:hover .room-img::after {
    background: rgba(0, 0, 0, 0);
}

/* Optional: Make the text easier to read when image darkens */
.room-card .room-info {
    position: relative;
    z-index: 2; /* Keeps text above the gray overlay */
    background: var(--white); /* Ensures text area stays white */
    padding: 25px;
    transition: var(--transition-smooth);
}

.room-card:hover .room-info {
    /* Subtle background shift on the text area to match the gray theme */
    background: #fafafa; 
}

.room-info h3 { margin-bottom: 10px; font-size: 1.6rem; }

.room-info p {
    flex-grow: 1; /* Pushes the price to the bottom so they all align */
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.room-info .price {
    font-weight: 700;
    color: var(--primary-orange, #ff8c00);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Initial state: Hidden and slightly shifted down */
.room-card.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Active state: Visible and in original position */
.room-card.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay: Makes the cards appear one-by-one (1st, 2nd, 3rd, 4th) */
.room-grid a:nth-child(1) .room-card { transition-delay: 0.1s; }
.room-grid a:nth-child(2) .room-card { transition-delay: 0.2s; }
.room-grid a:nth-child(3) .room-card { transition-delay: 0.3s; }
.room-grid a:nth-child(4) .room-card { transition-delay: 0.4s; }

/* --- Responsive Breakpoints --- */

/* Tablets (1024px and down) */
@media (max-width: 1024px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    }
}

/* Mobile Phones (768px and down) */
@media (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr; /* 1 Column (Full Width) */
        gap: 20px;
    }
    
    .room-card-link {
        max-width: 450px;
        margin: 0 auto; /* Centers the card on mobile */
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .room-grid {
        /* Stacks to 1 column on tablets and phones for readability */
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 5%;
    }
    
    .room-img {
        height: 350px; /* Slightly shorter on mobile to save screen space */
    }
}

.price { 
    display: block; 
    color: var(--primary-orange); 
    font-weight: 800; 
    font-size: 1.2rem;
}

/* --- 6. Responsive Design --- */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }

.hamburger span { 
    width: 25px; 
    height: 3px; 
    background: var(--dark); 
    transition: 0.3s; 
}

/* Hamburger Animation to 'X' */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 968px) {
    .navbar { padding: 15px 5%; }
    .hamburger { display: flex; z-index: 1100; }
    
    .nav-links {
        display: flex; /* Ensures the links exist as a flexbox */
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh;
        background: var(--white); 
        flex-direction: column; 
        justify-content: center;
        z-index: 1050; /* CRITICAL: Keeps menu above the zooming hero image */
        transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    }
    
    /* This catches both JS class names just in case */
    .nav-links.open,
    .nav-links.active { 
        right: 0; 
    }
    
    .nav-links a { 
        margin: 25px 0; 
        font-size: 1.5rem; 
        letter-spacing: 3px;
    }
    
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
}

/* --- 7. Reveal Animations --- */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: 1.2s cubic-bezier(0.2, 1, 0.3, 1); 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- Floating Action Buttons Container --- */
.fixed-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 2000;
}

/* Common Styles */
.btn-scroll-top, .btn-messenger {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 1. Scroll Up Button */
.btn-scroll-top {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-scroll-top svg { width: 20px; height: 20px; }

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: var(--dark);
    color: var(--white);
}

/* 2. Messenger Button */
.btn-messenger {
    background: var(--primary-orange);
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape is friendlier for chat */
    gap: 10px;
}

.btn-messenger svg { width: 22px; height: 22px; }

.messenger-text {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Reveal text when guest hovers OR on mobile it stays visible */
.btn-messenger:hover .messenger-text {
    max-width: 120px;
}

.btn-messenger:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fixed-actions { bottom: 20px; right: 20px; }
    .messenger-text { display: none; } /* Hide text on mobile for clean look */
    .btn-messenger { width: 55px; height: 55px; padding: 0; border-radius: 50%; }
}

/* --- 10. Main Footer (White Theme) --- */
.main-footer {
    background-color: var(--white);
    color: var(--dark);
    padding: 80px 8% 30px;
    border-top: 1px solid #f0f0f0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    /* Adjusted to 4 columns: Brand, Contact, Social, and Map gets the most space */
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr; 
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Brand Section & Logo */
.footer-brand .footer-logo {
    height: 100px;
    width: auto;
    filter: saturate(1.1);
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

.footer-brand .footer-logo:hover {
    transform: translateY(-3px);
    filter: saturate(1.3) drop-shadow(0 5px 15px rgba(255, 107, 0, 0.15));
}

.footer-brand p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
    max-width: 280px; /* Prevents text from stretching too wide */
}

/* Headings (Unified style for all sections) */
.footer-contact h4, 
.footer-social h4, 
.footer-map h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

/* Contact List */
.footer-contact ul { list-style: none; padding: 0; }

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.footer-contact li a, 
.footer-contact li p {
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--primary-orange);
}

.footer-contact svg {
    min-width: 18px;
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
}

/* --- Footer Social Links --- */
.social-list {
    list-style: none;
    padding: 0;
}

.social-list li {
    margin-bottom: 15px;
}

.social-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555; /* Changed from #bbb to #555 for visibility on white bg */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-list a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    filter: grayscale(0.2);
    transition: all 0.5s ease;
    height: 180px; /* Adjusted height for 4-column layout */
    width: 100%;
}

.map-container:hover {
    filter: grayscale(0);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #999;
}

/* --- Responsive Footer --- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid for Tablets */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Single column for Mobile */
        text-align: center;
        gap: 50px;
    }
    
    .footer-brand p, 
    .footer-contact li, 
    .social-list li a {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    
    .footer-brand .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* --- Our Story Section Styling --- */
.story-section {
    padding: 120px 8%;
    background: var(--white);
    overflow: hidden;
}

.story-grid {
display: flex; /* Flex is safer for side-by-side if Grid is behaving oddly */
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1400px; /* Wider container for larger feel */
    margin: 0 auto;
}

.story-content {
   flex: 1; /* Takes up 40% */
    text-align: left;
}

.story-content .section-title {
text-align: left;
    font-size: 3.5rem; /* Slightly larger since it's now a two-line title */
    margin-bottom: 25px;
    line-height: 1.1; /* Tighter line height for a high-end look */
    font-weight: 700;
    color: var(--dark);
}

.story-content .section-title span {
color: var(--primary-orange);
    display: inline-block; /* Allows for better spacing control */
    margin-top: 5px;
    font-style: italic;
    font-weight: 400;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .story-content .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

.story-visual {
flex: 1.5; /* Takes up 60% - makes the image LARGE */
    display: flex;
    justify-content: flex-end;
}

.accent-line.left {
    margin: 20px 0 30px 0; /* Aligns line to the left instead of centered */
}

.story-text {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Visual Wrapper with a subtle "Floating" effect */
.story-image-wrapper {
position: relative;
    width: 100%;
    max-width: 750px; /* Increased size to show off that 2048px photo */
    overflow: hidden;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.1);
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary-orange);
    z-index: 0;
}

.story-img {
width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.story-img:hover {
    transform: scale(1.02);
}

/* Hover Effect: Deep Zoom */
.story-image-wrapper:hover .story-img {
transform: scale(1.1);
}

/* The Orange "L-Frame" behind the photo */
.story-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-left: 3px solid var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
    z-index: -1;
    transition: 0.5s ease;
}

/* Optional: The Orange "L-Frame" border behind the image */
.story-image-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--primary-orange);
    border-right: 4px solid var(--primary-orange);
    z-index: -1;
}

.story-image-wrapper:hover::before {
    transform: translate(-10px, 10px); /* Frame moves slightly as you zoom */
}

/* Responsive Story Section */
@media (max-width: 992px) {
.story-grid {
flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .story-content {
text-align: center;
    }
    
    .story-content .section-title {
        text-align: center;
    }
    
    .accent-line.left {
        margin: 20px auto;
    }
    
.story-visual {
        justify-content: center;
        order: -1; /* Optional: Puts image ABOVE text on mobile */
    }
    
    .story-img {
        height: 350px;
    }
}

/* --- Loading Overlay Styling --- */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Higher than everything else */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 150px; /* Adjust based on your logo size */
    height: auto;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loader-line {
    width: 100px;
    height: 2px;
    background: #eeeeee;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange, #ff8c00);
    animation: loadingBar 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes pulseLogo {
    0%, 100% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes loadingBar {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Class to hide the loader via JS */
#loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}
