/* General Styles */
:root {
    --primary-color: #275186;    /* Blue */
    --secondary-color: #FEC459;  /* Yellow */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --primary-hover: #1e3c68;
    --secondary-hover: #e5b050;
    --section-padding: 80px 0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

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

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

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

.section-heading {
    margin-bottom: 50px;
}

.heading-line {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-top: 15px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: white !important;
    margin-left: 15px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(39, 81, 134, 0.9), rgba(39, 81, 134, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-date {
    background-color: var(--secondary-color);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
}

.date-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* About Section */
.about-image-container {
    position: relative;
    padding: 30px;
    height: 100%;
}

.about-image-shape {
    position: absolute;
    background-color: var(--secondary-color);
    width: 80%;
    height: 80%;
    top: 10%;
    left: 0;
    z-index: 0;
    border-radius: 10px;
}

.about-image {
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.about-image svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Section */
.event-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.event-description {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Program Section */
.program-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.program-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.program-overview {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.program-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.schedule-container {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.schedule-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.schedule-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Benefits Section */
.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.testimonial-container {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(39, 81, 134, 0.9), rgba(39, 81, 134, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    padding: 80px 0;
}

/* Contact Section */
.contact-info {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.contact-form-container {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding: 150px 0 80px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px;
    }
    
    .about-image-container {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    h1.display-3 {
        font-size: 2.5rem;
    }
    
    h2.display-5 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    h1.display-3 {
        font-size: 2rem;
    }
    
    .hero-date {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
