:root {
    /* Evento Theme Colors */
    --color-primary: #ff2143;
    /* Evento Red/Pink */
    --color-primary-dark: #d91b38;

    --color-bg-body: #ffffff;
    --color-bg-light: #f9f9ff;
    --color-bg-dark: #151515;
    /* Hero/Footer */

    --color-text-main: #2b2b2b;
    --color-text-light: #606060;
    --color-text-white: #ffffff;

    --font-stack: 'Poppins', sans-serif;

    --container-width: 1170px;
    --section-padding: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-main);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background: #fff;
    color: var(--color-text-main);
}

.btn-white:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Header */
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
    transition: 0.4s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-area.sticky {
    position: fixed;
    background: #111;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-menu a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--color-primary);
}

/* Hero Area */
.hero-area {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

/* Page Header for Subpages */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #ddd;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    min-width: 100px;
    text-align: center;
    border-radius: 5px;
}

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-area {
    background: var(--color-bg-body);
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 30px;
}

/* About Section */
.about-area {
    background: var(--color-bg-body);
    position: relative;
}

.about-content h2 {
    margin-bottom: 25px;
}

/* Responsive adjustments for About Split */
@media (max-width: 991px) {
    .row.align-items-center {
        flex-direction: column;
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
}

/* Schedule Refinement */
.schedule-item {
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    box-shadow: none;
    background: transparent;
}

.schedule-item .time-box {
    border-right: none;
    text-align: left;
    min-width: 100px;
}

/* Pricing Refinement */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* Speaker/Campus Hover */
.speaker-item {
    transition: 0.3s;
}

.speaker-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.single-feature {
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 30px;
}

.single-feature:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Schedule / Tabs */
.schedule-area {
    background: var(--color-bg-light);
}

.schedule-tab {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 15px 40px;
    background: #fff;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.schedule-item {
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.schedule-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.time-box {
    min-width: 120px;
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid #eee;
    margin-right: 30px;
}

.time-box span {
    display: block;
    font-weight: 600;
    color: var(--color-text-main);
}

.schedule-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.schedule-content p {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 0;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: left;
}

.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-text p {
    color: #888;
    font-size: 14px;
    line-height: 24px;
}

.copyright-area {
    background: #000;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Hide hamburger for desktop, show for mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
    }

    .main-menu.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 20px;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .time-box {
        border-right: none;
        margin-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    /* Fix About Section on Mobile */
    .about-area .row {
        flex-direction: column;
    }

    .about-area .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 30px;
    }
}