/* ===================================
   WIT REACH - MAIN STYLESHEET
   =================================== */

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F9AF3F;      /* Brand orange/gold */
    --primary-dark: #e69a2e;       /* Darker orange for hover */
    --accent-color: #FF6B35;       /* Complementary orange */
    --accent-light: #FF8A65;       /* Lighter orange */
    --text-primary: #ffffff;       /* White text */
    --text-secondary: #e8eaed;     /* Light gray text */
    --text-muted: #9aa0a6;         /* Muted text */
    --bg-primary: #000000;         /* Black background */
    --bg-secondary: #1a1a1a;       /* Dark gray background */
    --bg-card: #2d2d2d;            /* Card background */
    --border-color: #3c4043;       /* Border color */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'MADE Mirage', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand img {
    width: 150px;
    height: auto;
}

.nav-link {
    color: white !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.live-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    transition: all 0.3s ease;
    animation: livePulse 2s infinite;
}

.live-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.live-text {
    font-weight: 600;
    color: white;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: liveBlink 1.5s infinite;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

@keyframes liveBlink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
    }
    25%, 75% {
        opacity: 0.7;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: var(--primary-color); }
}

@keyframes bounce {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px) rotate(45deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3) blur(2px);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 180px;
    margin-bottom: 100px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'MADE Mirage', sans-serif;
}

.static-text {
    color: white;
}

.dynamic-text {
    color: white;
    position: relative;
    min-width: 200px;
    text-align: left;
}

.dynamic-text::after {
    content: '';
    position: absolute;
    left: var(--cursor-position, 0);
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    animation: blink 1s infinite;
    transition: left 0.1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'MADE Mirage', sans-serif;
    font-weight: 400;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% 100%;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    font-family: 'MADE Mirage', sans-serif;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.btn-secondary-cta {
    background-color: #000;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'MADE Mirage', sans-serif;
}

.btn-secondary-cta:hover {
    background-color: white;
    color: #000;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.chevron-down {
    width: 24px;
    height: 24px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chevron-down:hover {
    border-color: var(--primary-color);
    transform: rotate(45deg) scale(1.1);
}

/* ===================================
   HERO SOCIAL ICONS
   =================================== */
.hero-social-icons {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-social-icon {
    display: flex;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-social-icon:hover {
    background-color: rgba(255,255,255,0.25);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-social-icon i {
    color: white;
    font-size: 16px;
    line-height: 1;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.footer-logo {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    width: 400px;
    height: auto;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-heading {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'MADE Mirage', sans-serif;
}

.footer-text {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: 'MADE Mirage', sans-serif;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.footer-social-icon {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.footer-social-icon i {
    color: white;
    font-size: 18px;
    line-height: 1;
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    padding: 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-section .container {
    background: linear-gradient(180deg, #020b10 0%, #061725 100%);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

.why-text {
    z-index: 2;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 2rem;
    font-family: 'MADE Mirage', sans-serif;
    line-height: 1.2;
}

.why-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    font-family: 'MADE Mirage', sans-serif;
    font-weight: 400;
}

/* ===================================
   WHY FREE SECTION
   =================================== */
.why-free-section {
    background-color: #000000;
    padding: 5rem 0;
    color: white;
}

.why-free-title {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    font-family: 'MADE Mirage', sans-serif;
}

.why-free-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    margin-bottom: 2rem;
    font-family: 'MADE Mirage', sans-serif;
}

.why-free-heading {
    font-size: 1.4rem;
    font-weight: 300;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'MADE Mirage', sans-serif;
}

.why-free-text {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'MADE Mirage', sans-serif;
}

.why-free-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===================================
   VIP COMMUNITY SECTION
   =================================== */
.vip-cta-section {
    text-align: center;
}

.vip-cta-section .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.vip-cta-section .text-muted {
    color: #888 !important;
    font-size: 0.9rem;
    font-style: italic;
}

#vip-community .why-free-content {
    text-align: center;
}

#vip-community .why-free-text.text-start {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

/* ===================================
   LIVE EVENTS SECTION
   =================================== */
.live-events-section {
    background-color: #000000;
    padding: 5rem 0;
    color: white;
}

.live-events-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    font-family: 'MADE Mirage', sans-serif;
    line-height: 1.2;
}

.live-events-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-family: 'MADE Mirage', sans-serif;
    font-weight: 400;
}

.live-event-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.live-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.2);
    border-color: var(--primary-color);
}

.live-event-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.live-indicator-event {
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 1rem;
    animation: liveBlink 1.5s infinite;
}

.live-event-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: 'MADE Mirage', sans-serif;
}

.live-event-details {
    margin-bottom: 1.5rem;
}

.live-event-time {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.live-event-time i {
    margin-right: 0.5rem;
    color: #ff0000;
}

.live-event-countdown {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
    font-weight: 500;
}

.live-event-countdown i {
    margin-right: 0.5rem;
    color: #ff6b6b;
}

.live-event-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.live-event-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.live-event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.watch-live-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'MADE Mirage', sans-serif;
}

.watch-live-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.loading-spinner {
    padding: 3rem 0;
}

.no-events-message {
    padding: 3rem 0;
}

.no-events-message h4 {
    color: #cccccc;
    font-family: 'MADE Mirage', sans-serif;
    font-weight: 400;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .why-title {
        font-size: 3rem;
    }
    
    .why-section .container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-social-icons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .hero-social-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-social-icon i {
        font-size: 14px;
    }
    
    .why-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .why-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .why-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .why-section .container {
        padding: 2rem;
    }
    
    .responsive-image {
        position: relative;
        width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 15px;
    }
    
    .col-lg-6.col-md-12 {
        margin-bottom: 2rem;
    }
    
    .why-free-section {
        padding: 3rem 0;
    }
    
    .why-free-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .why-free-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .why-free-heading {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .why-free-text {
        text-align: center;
    }
    
    .why-free-image {
        margin-top: 2rem;
        max-width: 250px;
    }
    
    .live-events-title {
        font-size: 2.5rem;
    }
    
    .live-events-subtitle {
        font-size: 1.1rem;
    }
    
    .live-event-card {
        padding: 1.5rem;
    }
    
    .live-event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 2rem;
    }
    
    .why-description {
        font-size: 1rem;
    }
    
    .why-section .container {
        padding: 1.5rem;
    }
    
    .live-events-title {
        font-size: 2rem;
    }
    
    .live-event-card {
        padding: 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-social-icons {
        justify-content: center !important;
    }
}

/* ===================================
   STATIC LIVE EVENT CARDS
   =================================== */
.live-event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 175, 63, 0.2);
    border-color: var(--primary-color);
}

.live-event-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.live-event-card:hover .live-event-thumbnail {
    transform: scale(1.05);
}

.live-badge {
    z-index: 10;
}

.live-badge .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

.play-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.live-event-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    background: rgba(249, 175, 63, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.live-event-card .card-body {
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.live-event-card .card-title {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: white;
    font-weight: 600;
}

.countdown-text {
    color: #e0e0e0;
}

.countdown-text .text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.live-event-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-event-card .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 175, 63, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .live-event-card .card-title {
        font-size: 0.85rem;
    }
    
    .live-event-card .btn-primary {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .live-event-thumbnail {
        height: 140px;
    }
}
