/* YenCamp Main Styles */

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Container fluid class for removing margins */
.container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* Navbar Styles - Updated to ensure it stays above banner */
.navbar-brand {
    padding: 0;
}

header {
    position: relative;
    z-index: 1000; /* Higher z-index to ensure it stays above the banner */
}

.navbar {
    position: relative;
    z-index: 1000; /* Higher z-index to ensure it stays above the banner */
}

/* Vision & Mission Section */
.vision-mission {
    background-color: #f0f8ff;
    padding: 70px 0;
}

.vision-mission h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #333;
}

.section-lead {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.vision-card, .mission-card {
    min-height: 250px;
    border-top: 5px solid;
    transition: all 0.3s ease;
}

.vision-card {
    border-top-color: #1e5799;
}

.mission-card {
    border-top-color: #ff6b00;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.vision-card h3 {
    color: #1e5799;
}

.mission-card h3 {
    color: #ff6b00;
}

.vision-card ul, .mission-card ul {
    padding-left: 20px;
}

.vision-card li, .mission-card li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Partnerships Section */
.partnerships {
    background-color: #fff;
    padding: 70px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.partnerships h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #333;
}

.partnerships .section-lead {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #ff6b00;
    font-weight: bold;
    letter-spacing: 1px;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Landing Page Styles */
.landing-page section {
    padding: 60px 0;
}

/* Full-width banner image - Fixed to prevent overlapping with navigation */
.full-width-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    line-height: 0; /* Remove any potential space below the image */
    z-index: 1; /* Lower z-index to ensure navigation stays above */
}

.full-width-banner img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6b00;
    color: white;
    border: 2px solid #ff6b00;
}

.btn-primary:hover {
    background-color: #e56000;
    border-color: #e56000;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
}

.benefits h2, .program-overview h2, .testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #333;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 25px;
}

.card h3 {
    color: #ff6b00;
    margin-top: 0;
}

/* Program Overview */
.program-overview {
    background-color: #fff;
}

.program-overview p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.feature {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.feature h3 {
    color: #207cca;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial cite {
    font-weight: bold;
    color: #207cca;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
    color: #fff;
    text-align: center;
}

.call-to-action h2 {
    color: #fff;
}

/* Admin Navigation Styles */
.admin-navigation {
    border-bottom: 3px solid #ff6b00;
}

.admin-navigation .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-navigation .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.admin-navigation .nav-link.active {
    background-color: #ff6b00;
    border-radius: 4px;
}

/* Hide the admin navigation on small screens and show a toggle button instead */
@media (max-width: 768px) {
    .admin-nav {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
    
    .admin-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .admin-nav::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
    
    .admin-nav .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Clickable Dashboard Cards */
.dashboard-card-link {
    transition: all 0.3s ease;
}

.dashboard-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.dashboard-card-link .card {
    transition: all 0.3s ease;
}

.dashboard-card-link:hover .card {
    border-color: transparent;
}

.dashboard-card-link:hover .card-footer {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.dashboard-card-link:hover .fas.fa-arrow-circle-right {
    transform: translateX(3px);
}

/* Media Queries */
@media (max-width: 992px) {
    .col-md-4, .col-md-6, .feature {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-4, .col-md-6, .feature {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}