/* ============================== */
/* PREMIUM HERO SLIDER */
/* ============================== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black-void);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active .slide-bg {
    animation: kenBurns 6s ease infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Slide Overlay - DARKER for better text visibility */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(11, 11, 13, 0.92) 0%, 
        rgba(21, 21, 21, 0.88) 30%,
        rgba(255, 106, 0, 0.15) 50%,
        rgba(94, 23, 235, 0.1) 70%,
        rgba(11, 11, 13, 0.95) 100%
    );
    z-index: 2;
}

/* Additional dark overlay for text readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 106, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 106, 0, 0.5);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease 0.2s;
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.3);
}

.slide.active .slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge i {
    color: var(--liquid-gold);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.6));
}

.slide-badge span {
    color: var(--soft-white);
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Title - MORE VISIBLE */
.slide-title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    color: var(--soft-white);
    margin-bottom: 1.8rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease 0.4s;
    text-shadow: 
        0 0 30px rgba(255, 106, 0, 0.6),
        0 0 60px rgba(255, 106, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}


/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--molten-orange), var(--liquid-gold));
    width: 0%;
    transition: width 0.05s linear;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.8);
}


/* Responsive */
@media (max-width: 768px) {
    .hero-slider-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-badge {
        padding: 0.6rem 1.8rem;
        margin-bottom: 2rem;
    }
    
    .slide-badge span {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .slider-controls {
        bottom: 2rem;
        gap: 1.5rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
}

@media (max-width: 480px) {
    .slide-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
}


/* ==============================
 KILLER PREMIUM GLASS MARQUEE 
 ============================== */
.community-marquee-section {
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

/* ✅ FIXED: Use GAP instead of margin-right for seamless looping */
.marquee-track {
    display: inline-flex;
    gap: 1rem;
    /* Consistent spacing WITHOUT breaking the loop */
    will-change: transform;
}

/* KILLER GLASS CARD */
.premium-glass-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 14px 28px;
    min-width: max-content;
    /* Prevents any text clipping or phantom padding */

    border-radius: 16px;

    /* Deep Liquid Glass Base */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    /* Premium Inner Lighting */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1),
        0 4px 24px rgba(0, 0, 0, 0.15);

    cursor: default;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    /* Contains the shimmer effect */
}

/* Animated Shimmer Overlay (Subtle Premium Touch) */
.premium-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

/* INSTAGRAM GRADIENT TEXT */
.gradient-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    filter: drop-shadow(0 0 6px rgba(220, 39, 67, 0.25));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* HOVER: Full IG Gradient Background + White Text */
.premium-glass-card:hover {
    transform: scale(1.04);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        0 12px 40px rgba(220, 39, 67, 0.3),
        0 0 30px rgba(220, 39, 67, 0.15);
}

/* Trigger shimmer on hover */
.premium-glass-card:hover::before {
    left: 150%;
}

/* Text turns clean white on hover for maximum contrast against gradient bg */
.premium-glass-card:hover .gradient-text {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Loading Text */
.loading-text {
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    padding: 16px 28px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    min-width: max-content;
}



/* Scroll Down Hint */
.mouse-wheel-hint {
  position: absolute;       /* stays over banner */
  bottom: 20%;              /* adjusts height */
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  text-align: center;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mouse-wheel-hint span {
  display: block;
  margin-bottom: 10px;
}

.mouse-wheel-hint .arrow {
  font-size: 30px;
  animation: bounce 1.4s infinite;
}

/* Hide class added by JS */
.mouse-wheel-hint.hide {
  opacity: 0;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

/* Show on desktop only */
@media screen and (max-width: 767px) {
  .mouse-wheel-hint {
    display: none;
  }
}

/* ============================== */
/* WELCOME SECTION | aryan maurya */
/* ============================== */    
.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.welcome-container {
    text-align: center;
    /* margin: 0 auto; */
    width: 100%;
}

:root {
    --text-color: rgba(255, 255, 255, 0.1);
    --text-stroke-color: rgba(255, 255, 255, 0.3);
    --text-fill-color: var(--liquid-gold);
}

/* Heading Text Fill Effect */
.text-fill {
    font-family: var(--heading-font);
    font-size: 4vw;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 1rem 0;

    /* Text Fill Effect */
    background: linear-gradient(to right, var(--text-fill-color), var(--text-fill-color)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    color: var(--text-color);
    -webkit-text-stroke: 1px var(--text-stroke-color);
    text-stroke: 1px var(--text-stroke-color);

    /* Text Selection Disable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Paragraph Text Fill Effect - Smaller */
.welcome-container p.text-fill {
    font-family: var(--body-font);
    font-size: 1.2rem;
    /* Even smaller */
    line-height: 1.4;
    min-width: 90%;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
    text-stroke: 0.5px rgba(255, 255, 255, 0.2);
    --text-fill-color: var(--soft-white);
    --text-stroke-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.8rem;
}

/* Style only the quotes, leave paragraph text untouched */
.quote-text::before {
    content: "“";
    /* opening quote */
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    position: relative;
    top: 0;
    right: 1rem;
    line-height: 0;
}

.quote-text::after {
    content: "”";
    /* closing quote */
    font-family: 'Georgia', serif;
    position: relative;
    bottom: -2rem;
    left: 1rem;
    font-size: 2.5rem;
    line-height: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .text-fill {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .welcome-container p.text-fill {
        font-size: 0.8rem;
        /* Even smaller on mobile */
        margin-bottom: 0.6rem;
    }
}
@media (max-width: 450px) {
    .quote-text::before {
        font-size: 1.5rem;          
        top: 2px;                  
        right: 0.2rem;
    }

    .quote-text::after {
        font-size: 1.5rem;
        bottom: -1.0rem;           
        left: 0.2rem;
    }
}

/* ============================================
   TOAST NOTIFICATIONS - Slide In
   ============================================ */
.toast {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    color: var(--color-text-primary);
    z-index: var(--z-loading);
    transform: translateX(calc(100% + 40px));
    transition: transform var(--transition-normal) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #4CAF50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.info {
    border-left: 4px solid var(--color-primary);
}

/* ============================================
   CUSTOM CONFIRMATION MODAL
   ============================================ */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.676);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirm-box {
    background: linear-gradient(145deg, #08080842, #09090990);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
}

.confirm-overlay.active .confirm-box {
    transform: scale(1);
}

.confirm-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.confirm-title {
    margin: 0 0 1rem 0;
    color: white;
    font-size: 1.3rem;
}

.confirm-message {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-confirm-yes {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-confirm-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-confirm-no {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-confirm-no:hover {
    background: rgba(255, 255, 255, 0.2);
}