@charset "UTF-8";
/* ===============================
   GOOGLE FONTS
================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@100..900&family=League+Spartan:wght@100..900&display=swap");


/* ===============================
   ROOT
================================ */
:root {
  --primary-red: #ff0000;


  --bg-page: #f5f5f5;
  --bg-section: #ededed;
  --bg-card: #ffffff;

  --text-main: #111111;
  --text-muted: #555555;

  --border-soft: #dddddd;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  --radius-lg: 18px;
  --radius-md: 12px;
}

/* ===============================
   BASE
================================ */

/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-events-page {
        background-color: var(--bg-page);
        color: var(--text-main);
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
        padding-bottom: 5rem;
    }

    /* Hero Section */
    .custom-hero {
        padding: 6rem 2rem 3rem;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    .custom-hero-subtitle {
        color: var(--primary-red);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        font-size: 0.85rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .custom-hero-subtitle::before {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: var(--primary-red);
    }
    .custom-hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: 6rem;
        font-weight: 900 !important;
        line-height: 0.85;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: -2px;
        color: var(--text-main);
    }
    .custom-hero-title .red-text {
        color: var(--primary-red);
        display: inline-block;
    }
    .custom-hero-desc {
        margin-top: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
        max-width: 500px;
        color: var(--text-main);
    }
    .custom-hero-subdesc {
        color: var(--text-muted);
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }

    /* Events Grid */
    .custom-events-container {
        max-width: 1200px;
        margin: 4rem auto 0;
        padding: 0 2rem;
    }
    
    /* Tabs */
    .custom-tabs {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-soft);
        align-items: flex-end;
    }
    .custom-tab-btn {
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        font-size: 0.85rem;
        font-weight: 800;
        color: var(--text-muted);
        text-transform: uppercase;
        cursor: pointer;
        padding: 0 0 1rem 0;
        margin-bottom: -1px;
        transition: all 0.3s;
        position: relative;
        z-index: 2;
    }
    .custom-tab-btn.active, .custom-tab-btn:hover {
        color: var(--text-main);
        border-bottom: 2px solid var(--text-main);
    }

    .custom-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }

    /* Event Card */
    .custom-card {
        background: var(--bg-card);
        border: 1px solid var(--border-soft);
        border-radius: 0; /* Match design square edges if needed */
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }
    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-soft);
    }
    .custom-card-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .custom-card-body {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .custom-card-tag {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--primary-red);
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }
    
    .custom-card-status {
        background: var(--primary-red);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.2rem 0.5rem;
        border-radius: 2px;
        float: right;
    }

    .custom-card-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-main);
        margin: 0 0 0.5rem 0;
        text-transform: uppercase;
    }
    
    .custom-card-desc {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .custom-card-details {
        margin-bottom: 1.5rem;
    }
    
    .custom-card-detail-item {
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .custom-card-footer {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--border-soft);
        padding-top: 1.2rem;
    }
    
    .custom-card-price {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-main);
    }
    
    .custom-card-action {
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .custom-hero-title {
            font-size: 4rem;
        }
        .custom-grid {
            grid-template-columns: 1fr;
        }
    }


    /* Disable theme smooth scroll safely */
#smooth-wrapper {
  position: static !important;
  height: auto !important;
  overflow: visible !important;
}

#smooth-content {
  transform: translate3d(0, 0, 0) !important;
  will-change: auto !important;
}
    /* Dark Hero Section */
    .dark-hero-section {
        background-color: #111;
        color: #fff;
        padding: 8rem 2rem 5rem;
        position: relative;
        overflow: hidden;
    }
    
    .dark-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .dark-hero-bg span {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
    }
    .dark-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    
    .dark-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .dark-hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: 6rem;
        font-weight: 900 !important;
        line-height: 0.85;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: -3px;
        color: #fff;
    }
    
    .dark-hero-title .red-text {
        color: var(--primary-red);
        display: block;
    }

    .dark-hero-desc {
        margin-top: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .dark-hero-subdesc {
        color: #a3a3a3;
        margin-top: 1rem;
        font-size: 1rem;
        max-width: 500px;
        margin-bottom: 3rem;
    }

    .btn-red-solid {
        background-color: var(--primary-red);
        color: #fff;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .btn-red-solid:hover {
        background-color: #e60000;
        color: #fff;
    }

    /* Why Skool Section */
    .why-skool-section {
        background-color: #111;
        color: #fff;
        padding: 6rem 2rem;
        margin-top: 4rem;
    }
    
    .why-skool-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    @media (max-width: 992px) {
        .why-skool-container {
            grid-template-columns: 1fr;
        }
    }

    .why-skool-title {
        font-family: 'Outfit', sans-serif;
        font-size: 3rem;
        font-weight: 900 !important;
        line-height: 1;
        color: var(--bg-card);
        text-transform: uppercase;
        margin: 0;
    }
    .why-skool-title .red-text {
        color: var(--primary-red);
        display: block;
    }

    .why-skool-desc {
        font-size: 1.5rem;
        line-height: 1.6;
        color: #e0e0e0;
        margin-bottom: 3rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 2rem;
    }

    .stat-item h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 3rem;
        font-weight: 900 !important;
        color: #fff;
        margin: 0 0 0.5rem 0;
    }
    .stat-item p {
        font-size: 0.7rem;
        color: #888;
        text-transform: uppercase;
        font-weight: 700 !important;
        letter-spacing: 1px;
        margin: 0;
    }

    /* Testimonials Section */
    .testimonials-section {
        background-color: var(--bg-page);
        padding: 6rem 2rem;
    }

    .testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 4rem;
    }

    .testimonials-title {
        font-family: 'Outfit', sans-serif;
        font-size: 5rem;
        font-weight: 900 !important;
        line-height: 0.9;
        text-transform: uppercase;
        margin: 0;
        color: var(--text-main);
    }
    .testimonials-title .red-text {
        color: var(--primary-red);
        display: block;
    }

    .quote-icon {
        color: var(--primary-red);
        font-size: 4rem;
        line-height: 1;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    @media (max-width: 992px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }

    .testimonial-card {
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 350px;
    }

    .testimonial-card.red {
        background-color: var(--primary-red);
        color: #fff;
    }
    .testimonial-card.white {
        background-color: #fff;
        color: #111;
        border: 1px solid var(--border-soft);
    }

    .testimonial-text {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.4;
        margin: 2rem 0;
    }
    .testimonial-card.red .testimonial-text {
        font-size: 1.8rem;
        font-weight: 800;
    }

    .testimonial-author {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .testimonial-card.white .testimonial-author {
        color: #888;
    }


    /* Carousel Navigation Styles */
    .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
    }
    
    .owl-prev, .owl-next {
        pointer-events: auto;
        background: #111 !important;
        color: #fff !important;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 -20px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: background 0.3s !important;
        font-size: 1.2rem !important;
    }
    
    .owl-prev:hover, .owl-next:hover {
        background: var(--primary-red) !important;
    }

    .owl-dots {
        display: flex;
        justify-content: center;
        margin-top: 2rem !important;
        gap: 8px;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
        background: #111 !important;
        border-radius: 50%;
        transition: all 0.3s;
    }

    .owl-dot.active {
        background: var(--primary-red) !important;
        width: 20px;
        border-radius: 10px;
    }

    /* Testimonial New Gray Style */
    .testimonial-card-gray {
        background-color: #e0e0e0;
        border-radius: 12px;
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 350px;
        color: #111;
    }
    
    .testimonial-card-gray .quote-icon {
        color: var(--primary-red);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-card-gray .testimonial-text {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.6;
        color: #333;
        margin-bottom: 2rem;
    }

    .testimonial-card-gray .stars {
        color: var(--primary-red);
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .testimonial-card-gray .author-name {
        font-weight: 800;
        font-size: 1.1rem;
        margin: 0 0 0.2rem 0;
    }

    .testimonial-card-gray .author-loc {
        font-size: 0.85rem;
        color: #666;
    }

    /* Carousel Wrapper padding for arrows */
    .carousel-wrapper {
        position: relative;
        padding: 0 30px;
    }

    /* --- HUGE SLIDER UI STYLES --- */
    .huge-slide-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }
    .huge-slide-header {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-soft);
    }
    .huge-title-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .huge-event-title {
        font-family: 'Outfit', sans-serif;
        font-size: 5rem;
        font-weight: 900;
        line-height: 0.9;
        text-transform: uppercase;
        margin: 0;
        color: var(--text-main);
        flex: 1;
        min-width: 300px;
        letter-spacing: -1px;
    }
    .huge-event-desc {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 350px;
    }
    .huge-black-card {
        display: flex;
        flex-direction: row;
        border-radius: 0;
        border: none;
        background: #0d0d0d;
        color: #fff;
    }
    .huge-card-details {
        flex: 1;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .huge-card-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    .huge-card-title {
        font-family: 'Outfit', sans-serif;
        font-size: 4rem;
        font-weight: 900;
        line-height: 0.9;
        text-transform: uppercase;
        margin: 0 0 1.5rem 0;
        color: #fff;
    }
    .huge-card-subdesc {
        color: #a3a3a3;
        font-size: 1rem;
        line-height: 1.4;
        max-width: 400px;
    }
    .huge-card-bottom-bar {
        margin-top: 0;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid rgba(255,255,255,0.2);
        align-items: flex-end;
    }
    .huge-label {
        color: var(--primary-red);
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .huge-value {
        font-size: 0.9rem;
        font-weight: 500;
    }
    .huge-register-btn {
        color: #fff;
        text-decoration: none;
        font-weight: 700 !important;
        font-size: 16px !important;
        text-transform: uppercase;
        padding: 8px 16px !important;
        transition: all 0.3 ease-in-out;
    }
    .huge-register-btn:hover {
        color: var(--primary-red);
    }
    
    @media (max-width: 768px) {
        .huge-black-card {
            flex-direction: column !important;
        }
        .huge-black-card > div:first-child img {
            min-height: 250px !important;
            height: 250px !important;
        }
        .huge-card-details {
            padding: 1.5rem !important;
        }
        .huge-card-title {
            font-size: 2rem !important;
            margin-bottom: 1rem !important;
        }
        .huge-card-bottom-bar {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 0.8rem;
        }
        .huge-register-btn {
            width: 100%;
            text-align: center;
            margin-top: 0.5rem;
            font-size: 14px !important;
            font-weight: 600 !important;
        }

        .dark-hero-title {
            font-size: 4rem;
            font-weight: 700 !important;
        }

        .dark-hero-desc {
            margin-top: 1.8rem;
            font-size: 1.25rem;
            font-weight: 600 !important;
        }

        .dark-hero-subdesc {
            margin-top: 1rem;
            font-size: 0.85rem;
            max-width: 500px;
            margin-bottom: 1.4rem;
        }
        .why-skool-section{
            padding: 3rem 1rem;
            margin-top: 2rem;
        }
        .why-skool-container {
            gap: 1rem;
        }

        .why-skool-title {
            font-size: 1.8rem;
            font-weight: 700 !important;
        }

        .why-skool-desc {
            margin: 1rem;
        }

        .stat-item h4 {
            font-size: 1.8rem;
            font-weight: 700 !important;
        }
        .stat-item p {
            font-size: 0.7rem;
            font-weight: 500 !important;
        }

        .testimonials-section {
            padding: 3rem 1rem;
        }

        .testimonials-title {
            font-size: 2.8rem;
            font-weight: 700 !important;
        }
    }
