:root {
    --primary: #009A49;
    --primary-dark: #007a3a;
    --secondary: #DE2B1D;
    --accent: #FCD116;
    --dark: #212529;
    --light: #f8f9fa;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    padding-top: 72px;
}

/* Colors */
.bg-green { background-color: var(--primary); }
.bg-red { background-color: var(--secondary); }
.bg-yellow { background-color: var(--accent); }
.text-red { color: var(--secondary); }
.text-yellow { color: var(--accent); }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-yellow {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.btn-yellow:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background: url('../assets/images/bg.png') no-repeat  center center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:00%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.text-primary {
    color: #042c12 /** rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;**/;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Program Cards */
.program-card {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-time {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    background-color: #1d6d39;
}

.program-details {
    flex: 1;
    padding: 15px;
    background-color: white;
}

/* Speaker Cards */
.speaker-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.speaker-img {
    height: 250px;
    overflow: hidden;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.speaker-card:hover .speaker-img img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 20px;
    background-color: white;
}

.speaker-bio {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Partner Logos */
.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--dark) !important;
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    transition: all 0.3s;
    background-color: #042c12;
}

.nav-link {
color: #ffffff;

}

.nav-link:hover {
color: #8ba79b;

} 

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .program-card {
        flex-direction: column;
    }
    
    .program-time {
        flex: 0 0 auto;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero .btn:not(:last-child) {
        margin-right: 0;
    }
}

.nav-tabs .nav-link {
    color: #042c12;
}

.bg-primary {
    background-color: #042c12;
}