/* Reset e base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.language-toggle {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: #333;
    color: #fff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.hero-area h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.italy-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Language Selector Section */
.language-selector-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.language-selector-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.language-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lang-btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #fff;
    border: 2px solid #333;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.lang-btn-large:hover {
    background-color: #333;
    color: #fff;
}

/* About Me Section */
.about-me-section {
    padding: 80px 0;
    border-bottom: 1px solid #e9ecef;
}

.about-me-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.anna-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* Course Themes Section */
.course-themes-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.theme-box {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.theme-box:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.1);
    color: #007bff;
}

.theme-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.theme-box span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

/* Course Offerings Section */
.course-offerings-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.course-offerings-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.course-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
}

.course-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.course-item p {
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.contact-info {
    max-width: 400px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

.site-title-footer {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .hero-area h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .theme-box {
        min-height: 60px;
        padding: 20px 15px;
    }
    
    .language-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .course-list {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .language-toggle {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .lang-btn {
        padding: 3px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-area h1 {
        font-size: 2rem;
    }
    
    .about-me-section h2,
    .course-offerings-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}



/* Theme Pages Styles */
.theme-page-hero {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

.theme-page-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.theme-hero-image {
    max-width: 600px;
    margin: 0 auto;
}

.theme-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.theme-content {
    padding: 60px 0;
}

.theme-description h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.theme-description h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin: 30px 0 15px;
}

.theme-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.theme-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

.theme-description li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

.theme-description li strong {
    color: #333;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .theme-page-hero h1 {
        font-size: 2rem;
    }
    
    .theme-image {
        height: 200px;
    }
    
    .theme-description h2 {
        font-size: 1.7rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
}

