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

body {
    font-family: 'Neue Helvetica Georgian', Arial, sans-serif;
    line-height: 1.6;
    color: #45657f;
}

/* Announcement Banner */
.announcement-banner {
    background-color: #45657f;
    color: #c9d6db;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-text {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-weight: medium;
    font-size: 1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

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

/* Header Styles - Light Yellow Background */
.header {
    background: linear-gradient(135deg, #fffcdb 0%, #f8f4e6 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(69, 101, 127, 0.15);
    border-bottom: 3px solid #45657f;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(69, 101, 127, 0.2));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo h1 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #45657f;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo h2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #45657f;
    margin: 0;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.navigation li {
    position: relative;
}

.navigation a {
    text-decoration: none;
    color: #45657f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #c9d6db;
}

/* Hero Section - Light Yellow Background */
.hero {
    background-color: #fffcdb;
    padding: 4rem 0 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #45657f;
    margin-bottom: 0;
    font-weight: 600;
}

.hero-cta {
    flex: 0 0 auto;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* CTA Button Styles */
.cta-button {
    background-color: #45657f;
    color: #c9d6db;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: semibold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #c9d6db;
    color: #45657f;
}

/* About Us Section - Light Yellow Background */
.about {
    background-color: #fffcdb;
    padding: 4rem 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #45657f;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: medium;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Educational Approach Section - Very Light Beige/Off-White Background */
.educational-approach {
    background-color: #fefefe;
    padding: 4rem 0;
}

.educational-approach h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #45657f;
    line-height: 1.6;
    font-weight: medium;
}

/* Programs Section - Light Blue Background */
.programs {
    background-color: #d9e9f3;
    padding: 4rem 0;
}

.programs h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 3rem;
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.program-card h3 {
    font-size: 1.25rem;
    font-weight: semibold;
    color: #45657f;
    padding: 1rem 1rem 0.5rem;
}

.age-range {
    color: #45657f;
    font-weight: semibold;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.program-card p:last-child {
    color: #45657f;
    padding: 0 1rem 1.5rem;
    line-height: 1.6;
    font-weight: medium;
}

/* Director Qualifications Section - Light Yellow Background */
.director-qualifications {
    background-color: #fffcdb;
    padding: 4rem 0;
}

.director-qualifications h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 3rem;
    text-align: center;
}

.qualifications-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.qualifications-text {
    flex: 2;
}

.qualifications-text h3 {
    font-size: 2rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 1rem;
}

.qualifications-text > p {
    font-size: 1.1rem;
    color: #45657f;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: medium;
}

.qualification-section {
    margin-bottom: 2rem;
}

.qualification-section h4 {
    font-size: 1.25rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 0.5rem;
}

.qualification-section ul {
    list-style: none;
    padding-left: 1rem;
}

.qualification-section li {
    color: #45657f;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: medium;
}

.qualification-section li:before {
    content: "•";
    color: #c9d6db;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.directors-images {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.director-image {
    flex: 1;
    text-align: center;
}

.director-image img {
    width: 100%;
    max-width: 450px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(69, 101, 127, 0.2);
    transition: transform 0.3s ease;
}

.director-image img:hover {
    transform: scale(1.02);
}

.director-image h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: semibold;
    color: #45657f;
}

/* Branches Section - Light Blue Background */
.branches {
    background-color: #d9e9f3;
    padding: 4rem 0;
}

.branches h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 3rem;
    text-align: center;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.branch-card h3 {
    font-size: 1.5rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 1rem;
}

.branch-address {
    color: #45657f;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    background: rgba(201, 214, 219, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #c9d6db;
}

.branch-card p:last-child {
    color: #45657f;
    line-height: 1.6;
    font-weight: medium;
}

/* Activities Section - Light Yellow Background */
.activities {
    background: linear-gradient(135deg, #fffcdb 0%, #f8f4e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    transition: background-image 0.6s ease;
}

.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2345657f" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2345657f" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%2345657f" opacity="0.1"/></svg>');
    pointer-events: none;
    transition: opacity 0.6s ease;
}

/* Background images for different activities */
.activities.sports-bg {
    background-image: url('images/sports.png');
    background-size: cover;
    background-position: center;
}

.activities.night-camp-bg {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

.activities.new-year-bg {
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

.activities.concert-bg {
    background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

.activities.marching-band-bg {
    background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

.activities.sports-bg::before,
.activities.night-camp-bg::before,
.activities.new-year-bg::before,
.activities.concert-bg::before,
.activities.marching-band-bg::before {
    opacity: 0.3;
}

.activities h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.activities h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #45657f, #c9d6db);
    margin: 1rem auto;
    border-radius: 2px;
}

.activities-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.activities-text {
    flex: 1;
}

.activities-text > p {
    font-size: 1.2rem;
    color: #45657f;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: medium;
    text-align: left;
    max-width: 100%;
}

.events-list {
    display: grid;
    gap: 2rem;
    max-width: 100%;
}

.event-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(69, 101, 127, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #45657f, #c9d6db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(69, 101, 127, 0.25);
    border-color: #c9d6db;
}

.event-item:hover::before {
    transform: scaleX(1);
}

.event-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #45657f;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.event-item h4::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #c9d6db;
    font-size: 1.2rem;
}

.event-item p {
    color: #45657f;
    line-height: 1.7;
    font-weight: medium;
    font-size: 1rem;
}


/* Contact Section - Light Blue Background */
.contact {
    background-color: #d9e9f3;
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #45657f;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: medium;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #45657f;
    line-height: 1.6;
    font-weight: medium;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Neue Helvetica Georgian', Arial, sans-serif;
    font-weight: medium;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer Section - Light Yellow Background */
.footer {
    background-color: #fffcdb;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #45657f;
    line-height: 1.3;
}

.contact-info p {
    color: #45657f;
    margin-bottom: 0.5rem;
    font-weight: medium;
}

.branches-info {
    margin-top: 1rem;
}

.branches-info h4 {
    font-size: 1.1rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 0.5rem;
}

.branches-info p {
    color: #45657f;
    font-weight: medium;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links p {
    color: #45657f;
    margin-bottom: 0.5rem;
    font-weight: medium;
}

.footer-links a {
    color: #45657f;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
    font-weight: medium;
}

.footer-links a:hover {
    color: #c9d6db;
}

.newsletter h4 {
    font-size: 1.25rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 1rem;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Neue Helvetica Georgian', Arial, sans-serif;
    font-weight: medium;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #45657f;
    cursor: pointer;
    font-weight: medium;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation ul {
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-content,
    .qualifications-content,
    .activities-content,
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .activities h2 {
        font-size: 2.5rem;
    }
    
    .events-list {
        max-width: 100%;
    }
    
    .image-gallery {
        height: 350px;
    }
    
    .approach-grid,
    .programs-grid,
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Go Back Button Styles */
.go-back-section {
    background-color: #45657f;
    padding: 1rem 0;
}

.go-back-btn {
    color: #c9d6db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.go-back-btn:hover {
    color: white;
}

/* Enrollment Page Styles */
.enrollment-section {
    background: linear-gradient(135deg, #fffcdb 0%, #f8f4e6 100%);
    padding: 4rem 0;
    min-height: 80vh;
}

.enrollment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.enrollment-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #45657f;
    margin-bottom: 1rem;
}

.enrollment-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #45657f, #c9d6db);
    margin: 1rem auto;
    border-radius: 2px;
}

.enrollment-header p {
    font-size: 1.2rem;
    color: #45657f;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: medium;
}

/* Google Form Styles */
.form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(69, 101, 127, 0.15);
    margin: 0 auto;
    max-width: 800px;
}

.google-form {
    border: none;
    border-radius: 8px;
    width: 100%;
    min-height: 600px;
}

/* Contact Form Google Form Styles */
.contact-form .form-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .google-form {
    min-height: 800px;
}

/* New Activities Section Styles */
.activities-intro {
    font-size: 1.1rem;
    color: #45657f;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: medium;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(69, 101, 127, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(69, 101, 127, 0.25);
}

.event-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
}

.event-content h4 {
    font-size: 1.3rem;
    font-weight: semibold;
    color: #45657f;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.event-content p {
    font-size: 1rem;
    color: #45657f;
    margin: 0;
    line-height: 1.5;
    font-weight: medium;
}

/* Image Gallery Section */
.image-gallery-section {
    margin-top: 4rem;
}

.image-gallery-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #45657f;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.image-gallery-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #45657f, #c9d6db);
    margin: 0.8rem auto;
    border-radius: 2px;
}

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

.gallery-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(69, 101, 127, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(69, 101, 127, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Language Toggle Styles */
.language-toggle {
    margin-left: 2rem;
}

.lang-btn {
    background: linear-gradient(135deg, #45657f, #c9d6db);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(69, 101, 127, 0.2);
}

.lang-btn:hover {
    background: linear-gradient(135deg, #c9d6db, #45657f);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(69, 101, 127, 0.4);
}

/* Mobile Header Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .logo h2 {
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .navigation a {
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .logo h2 {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navigation a {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
}

/* Director Images Mobile Responsive */
@media (max-width: 768px) {
    .directors-images {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .director-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .about-text h2,
    .educational-approach h2,
    .programs h2,
    .director-qualifications h2,
    .branches h2,
    .activities h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}