/* Page Hero Styles */
.page-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.7), rgba(44, 85, 48, 0.7)), url('../img/banner.jpg') center/cover no-repeat;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values {
    background: #f8fffe;
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fffe;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #eee;
}

.faq-question h3 {
    margin: 0;
    color: #2c5530;
}

.faq-question i {
    color: #2c5530;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #666;
}

/* School Life Styles */
.clubs-activities {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.activity-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.sports-section {
    background: #f8fffe;
    padding: 80px 0;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sports-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

.leadership {
    background: white;
    padding: 80px 0;
}

.leadership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.leadership-intro h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.leadership-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #2c5530;
}

.leader-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.3);
}

.leader-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .leadership-gallery {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.school-gallery {
    background: #f8fffe;
    padding: 80px 0;
    text-align: center;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #2c5530;
    background: transparent;
    color: #2c5530;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #2c5530;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.awards {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.award-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.award-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2c5530;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .about-grid,
    .contact-grid,
    .sports-content,
    .leadership-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .sports-list {
        grid-template-columns: 1fr;
    }
}