/* STRONG 2024 - Redesign CSS */

:root {
    --primary-color: #107C41; /* Emerald Green */
    --primary-hover: #0b5c2e; /* Darker Emerald */
    --secondary-color: #5D4037; /* Brown */
    --accent-color: #D4AF37; /* Yellow Gold */
    --text-color: #666666;
    --heading-color: #3E2723; /* Dark Brown for Headings */
    --bg-light: #f9f9f9;
    --bg-hero-start: #3E2723; /* Dark Brown */
    --bg-hero-end: #000000;
    --font-main: 'Inter', 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

/* Buttons */
.btn {
    border-radius: 50px !important; /* Force pill shape */
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 12px 30px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    border-width: 2px !important; /* Ensure visible borders */
}

/* Primary Button (Solid) */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(16, 124, 65, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: #7effbf !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 124, 65, 0.4);
    color: #F4C430 !important;

}

/* Outline Primary Button (Matches user's class combo) */
.btn-outline.btn-primary {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none;
}

.btn-outline.btn-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(16, 124, 65, 0.3);
}

/* White Outline Button (for dark backgrounds) */
.btn-outline-light {
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
}

.btn-outline-light:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Override Theme Specifics */
.custom-border-width {
    border-width: 2px !important;
}

.custom-border-radius {
    border-radius: 50px !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback or gradient if image missing */
    background: radial-gradient(circle at center, rgba(16, 124, 65, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 1px 4px 15px rgba(212, 175, 55, 0.3);
}
.hero-title-description{
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #F4C430;
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Login Card in Hero */
.login-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.login-card h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Cards */
.custom-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown */
.countdown-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    padding: 20px 0 20px !important;
    color: #999 !important;
    border-top: none !important;
}

.footer h4 {
    color: #fff !important;
}

.footer a {
    color: #ccc !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
}
.footer .container .row > div {
    margin-bottom: 20px !important;
}
.bg-light-gray {
    background-color: var(--bg-light) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .d-flex.gap-3 {
        justify-content: center;
    }
}

/* --- NEW SECTIONS --- */

/* --- HEADER & NAVIGATION REDESIGN --- */

/* Force White Header Background with Blur */
/* Force White Header Background with Blur */
html #header .header-body {
    background: rgba(255, 255, 255, 0.98) !important; /* Semi-transparent for blur effect */
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-height: 90px; /* Ensure enough height */
}

/* Remove transparent overlays from theme */
#header.header-semi-transparent .header-body:before {
    display: none !important;
}

/* Logo Area */
.header-logo img {
    margin-top: 5px;
    transition: all 0.3s ease;
}

/* Main Menu Items */
.header-nav-main nav > ul > li > a {
    font-family: var(--font-main) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 14px !important;
    color: #333 !important; /* Dark text */
    padding: 25px 18px !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

/* Hover & Active States */
.header-nav-main nav > ul > li:hover > a,
.header-nav-main nav > ul > li.active > a,
.header-nav-main nav > ul > li.open > a {
    color: var(--primary-color) !important;
    background: rgba(16, 124, 65, 0.05) !important; /* Subtle green bg on hover */
    box-shadow: none !important;
    border: none !important;
    border-radius: 5px !important;
}

/* Desktop Menu Specifics (Borders & Font Size) */
@media (min-width: 992px) {
    .header-nav-main nav > ul > li > a {
        padding: 22px 18px !important; /* Reduced padding for borders */
        border-top: 3px solid transparent !important;
        border-bottom: 3px solid transparent !important;
        border-radius: 0 !important;
    }

    .header-nav-main nav > ul > li:hover > a,
    .header-nav-main nav > ul > li.active > a,
    .header-nav-main nav > ul > li.open > a {
        border-top: 3px solid var(--primary-color) !important;
        border-bottom: 3px solid var(--primary-color) !important;
        border-radius: 0 !important;
        font-size: 15px !important;
        background: rgba(16, 124, 65, 0.05) !important;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    background: #ffffff !important;
    border: none !important;
    border-top: 3px solid var(--primary-color) !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
    padding: 10px 0 !important;
}

.dropdown-item {
    padding: 12px 25px !important;
    font-size: 14px !important;
    color: #555 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f9f9f9 !important;
    color: var(--primary-color) !important;
    padding-left: 30px !important; /* Slide effect */
}

/* Mobile Menu Button */
.header-btn-collapse-nav {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px;
}

/* Cart & Member Area Specifics */
.header-nav-main i.fa {
    margin-right: 5px;
    font-size: 1.1em;
}

.my-cart {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    position: relative;
    top: -2px;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Activity Cards */
.activity-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 124, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background: var(--primary-color);
    color: #fff;
}

/* Speaker Avatars */
.speaker-item {
    text-align: center;
    margin-bottom: 30px;
}

.speaker-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.speaker-item:hover .speaker-avatar {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline */
.timeline-box {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.timeline-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}
.pricing-card.popular small {
    color: #fff !important;
}
.pricing-header {
    padding: 30px;
    background: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-card.popular .pricing-header {
    background: var(--primary-color);
    color: #fff;
}

.pricing-card.popular .pricing-header h3,
.pricing-card.popular .pricing-header .price {
    color: #fff;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    background: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin: 15px 0;
}

.price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.pricing-header h3 {
    font-size: 1.8rem;
    text-transform: none !important;
}

/* Mobile Menu Background Blur */



/* Sticky Header Shadow & Blur */
html.sticky-header-active #header .header-body {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    --tw-backdrop-blur: blur(12px) !important; 
    -webkit-backdrop-filter: blur(12px) !important;
}

