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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header Styles */
.header {
    background-color: white;
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

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

/* Navigation Styles */
.nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-btn {
    background-color: transparent;
    color: black;
    border: 2px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

.nav-btn:hover {
    background-color: #c41e3a;
    border-color: #c41e3a;
    color: white;
    transform: translateY(-2px);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn.active {
    background-color: #c41e3a;
    border-color: #c41e3a;
    color: white;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Section Styles */
.section {
    min-height: 100vh;
    padding: 0 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section:nth-child(even) {
    background-color: #ecf0f1;
}

.section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 3px solid #c41e3a;
    padding-bottom: 10px;
}

.section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.section ul {
    margin: 15px 0 15px 40px;
}

.section li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.section li strong {
    color: #2c3e50;
}

/* Directors Section Styles */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.director-card {
    text-align: center;
    padding: 20px;
}

.director-image-placeholder {
    width: 200px;
    height: 200px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border: 3px solid #c41e3a;
}

.director-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.director-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

/* Contact Section Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-item h3 {
    color: #c41e3a;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

.contact-item a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b1a1a;
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #8b1a1a;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
    width: 100%;
}

#contact {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .nav-btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    main {
        margin-top: 140px;
    }
}

@media (max-width: 640px) {
    .section h2 {
        font-size: 24px;
    }

    .section p,
    .section li {
        font-size: 14px;
    }

    .nav-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}
