
/* Home Section Styles */
#home {
    background-color: #000;
}

#hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

#hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), #000);
}

/* Dynamic Greeting Styles */
.welcome-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    opacity: 0;
}

.welcome-badge.animate-slide-down {
    animation: slideDownFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.welcome-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Parallax Effect Class */
.parallax-content {
    transition: transform 0.1s cubic-bezier(0,0,0.2,1);
    will-change: transform;
}

/* Floating Particles */
.particle {
    position: absolute;
    font-size: 2rem;
    transition: transform 0.1s linear;
}

/* Marquee Animation */
.marquee-content {
    animation: scroll-left 40s linear infinite;
    display: flex;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* TYPING EFFECT CURSOR */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: var(--color-gold);
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Scroll Down Animation */
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Slide Down Fade Animation */
@keyframes slideDownFade {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* FEATURED CAROUSEL */
#featured-scroll, #campaign-grid, #home-category-tabs, #home-products-grid {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
#featured-scroll::-webkit-scrollbar, #campaign-grid::-webkit-scrollbar, #home-category-tabs::-webkit-scrollbar, #home-products-grid::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* Branch Cards (Compact) */
.branch-card-compact {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s;
}
.branch-card-compact:hover {
    border-color: var(--color-gold);
    background: #222;
    transform: translateY(-5px);
}

/* SOCIAL VIBE STRIP */
.scrolling-strip {
    animation: scroll-strip 30s linear infinite;
}
.scrolling-strip:hover {
    animation-play-state: paused;
}
@keyframes scroll-strip {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.social-img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.social-img:hover {
    opacity: 1;
}

/* TESTIMONIALS SLIDER */
.testimonial-slide {
    pointer-events: none;
}
.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }
.reveal-delay-400 { transition-delay: 400ms; }

/* --- NEW ADDITIONS FOR PREMIUM VIBE --- */

/* 1. Custom Cursor Styles */
body.cursor-none {
    cursor: none;
}
body.cursor-none a, body.cursor-none button {
    cursor: none; /* Ensures system cursor stays hidden */
}

/* The expanding outline */
#cursor-outline.hover-active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(212, 175, 55, 0.1);
    border-color: transparent;
}

/* 2. Blog Card Styling */
.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 3. 3D Card Perspective */
.perspective-container {
    perspective: 1200px;
}
.stamp-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* 4. Ticket Card Styles */
.ticket-card {
    position: relative;
    /* Optional: texture */
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: rgba(255, 255, 255, 0.03);
}

/* 5. Horizontal Scroll Utility (Hide Scrollbar - General) */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 6. Custom Visible Horizontal Scrollbar (For Desktop Category Menu) */
.custom-horiz-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .custom-horiz-scroll::-webkit-scrollbar {
        height: 6px;
        display: block;
    }
    .custom-horiz-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin: 0 10px;
    }
    .custom-horiz-scroll::-webkit-scrollbar-thumb {
        background-color: var(--color-gold);
        border-radius: 10px;
    }
    .custom-horiz-scroll::-webkit-scrollbar-thumb:hover {
        background-color: #C5A028;
    }
}

/* Mobile: Hide scrollbar (standard behavior for swipe) */
@media (max-width: 767px) {
    .custom-horiz-scroll::-webkit-scrollbar {
        display: none;
    }
    .custom-horiz-scroll {
        scrollbar-width: none;
    }
}

/* --- GALLERY SLIDER STYLES (UPDATED) --- */
.gallery-track {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome */
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px; /* Base width */
    height: 350px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .gallery-item {
        width: 320px;
    }
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-nav-btn:hover {
    background-color: var(--color-gold);
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -1rem;
}

.gallery-next {
    right: -1rem;
}

@media (min-width: 1024px) {
    .gallery-prev { left: -2rem; }
    .gallery-next { right: -2rem; }
}

/* Lightbox Animation */
#gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

#gallery-lightbox-img.active {
    transform: scale(1);
}

.lightbox-nav svg {
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}
