/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #2c3e50;
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f39c12;
}

/* Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2c3e50;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: #2c3e50;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e67e22;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

/* Hero Banner */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,126,34,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: #e67e22;
    margin: 0 auto 15px;
}

.section-header p {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.values-list li {
    padding: 8px 0;
    color: #2c3e50;
    font-weight: 600;
}

.values-list li i {
    color: #e67e22;
    margin-right: 8px;
}

/* Pledge Section */
.pledge-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6cc 100%);
}

.pledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pledge-image img {
    width: 100%;
    border-radius: 10px;
}

.pledge-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pledge-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pledge-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    padding: 15px;
    border-left: 3px solid #e67e22;
    background: #fdf6e3;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #e67e22;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Media Section */
.media-section {
    padding: 80px 0;
    background: #fff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.media-card-body {
    padding: 20px;
}

.media-card-body h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.media-card-body p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.media-card-body a {
    color: #e67e22;
    font-weight: 600;
}

.media-card-body a:hover {
    color: #d35400;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #fff;
}

.history-section .section-header h2 {
    color: #fff;
}

.history-section .section-header p {
    color: #bdc3c7;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ecf0f1;
    margin-bottom: 20px;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.modal i.fa-check-circle {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modal p {
    color: #777;
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background: #1a252f;
    color: #bdc3c7;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e67e22;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #2c3e50;
    color: #fff;
    margin-right: 8px;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 250px;
    background: #2c3e50;
}

.page-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
    display: flex;
    align-items: center;
}

.page-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.page-banner p {
    color: #bdc3c7;
    font-size: 1.1rem;
}

/* Info Cards (About page) */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

/* Media Page */
.media-page-section {
    padding: 80px 0;
    background: #fff;
}

.media-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.media-page-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}

.media-page-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.media-page-card-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.media-page-card-content h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 8px;
}

.media-page-card-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.media-banner {
    margin-top: 20px;
}

.media-banner img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Video Clips Page */
.video-clips-section {
    padding: 80px 0;
    background: #fff;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.timeline-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-period {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(230, 126, 34, 0.9);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-card-body {
    padding: 18px;
}

.timeline-card-body h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-card-body p {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Trustees Page */
.trustees-section {
    padding: 80px 0;
    background: #fff;
}

.trustees-featured {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trustee-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}

.trustee-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trustee-image {
    flex-shrink: 0;
}

.trustee-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e67e22;
}

.trustee-info h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

.trustee-role {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.trustee-info p {
    color: #666;
    line-height: 1.7;
}

.other-trustees {
    margin-top: 50px;
    text-align: center;
}

.other-trustees h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.other-trustees-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.other-trustee-item {
    background: #f9f9f9;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.other-trustee-item i {
    color: #e67e22;
    margin-right: 8px;
}

/* Issue / VALUES Page */
.issue-section {
    padding: 80px 0;
    background: #fff;
}

.issue-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.issue-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.issue-content-block {
    margin-bottom: 30px;
}

.issue-content-block h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.issue-content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.sidebar-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.sidebar-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sidebar-card h4 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sidebar-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card {
    text-align: left;
    background: #2c3e50;
    color: #ecf0f1;
}

.contact-card h4 {
    color: #fff;
}

.contact-card p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .pledge-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        grid-template-columns: 1fr;
    }

    .trustee-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .media-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .main-header {
        position: relative;
    }

    .hero {
        height: 350px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
