* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #c4c4c4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: white;
    border: 3px solid #333;
    margin: 20px;
    padding: 30px 0;
    text-align: center;
}

.site-title {
    font-size: 4rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.main-navigation {
    margin-top: 20px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-link {
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    font-style: italic;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
    text-decoration: underline;
}

/* Main Content */
.main-content {
    margin: 40px 0;
    min-height: 60vh;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero-image-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 600px;
    object-fit: cover;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 0 60px 0;
    background-color: white;
    border: 3px solid #333;
    margin: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: #333;
    font-size: 1.8rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #666;
}

/* About Page Styles */
.about-section {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border: 1px solid #ddd;
}

.about-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
    border-radius: 5px;
}

/* Bio Page Styles */
.bio-section {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border: 1px solid #ddd;
}

.bio-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.bio-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.timeline-list {
    list-style: none;
    padding-left: 0;
}

.timeline-list li {
    padding: 5px 0;
    margin-bottom: 8px;
    border-left: none;
    padding-left: 0;
}

.awards-list {
    list-style: none;
    padding-left: 0;
}

.awards-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.awards-list li:last-child {
    border-bottom: none;
}

/* Contact Page Styles */
.contact-section {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border: 1px solid #ddd;
}

.contact-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666;
    text-decoration: underline;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form-section h3 {
    color: #333;
    margin-bottom: 30px;
}

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.25);
}

.btn-primary {
    background-color: #333;
    border-color: #333;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #555;
    border-color: #555;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 5px;
}

/* Photographies Page */
.photo-section {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border: 1px solid #ddd;
    text-align: center;
}

.photo-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.coming-soon {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 5px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        margin: 10px;
        padding: 20px 0;
    }
    
    .main-footer {
        margin: 10px;
        padding: 30px 0 40px 0;
    }
    
    .site-title {
        font-size: 2.5rem;
    }
    
    .nav-list {
        gap: 20px;
        flex-direction: column;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .hero-image-container {
        padding: 0 20px;
    }
    
    .about-section,
    .bio-section,
    .contact-section,
    .photo-section {
        margin: 10px;
        padding: 20px;
    }
    
    .about-image {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2rem;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .social-link {
        font-size: 1.5rem;
    }
    
    .about-section h1,
    .bio-section h1,
    .contact-section h1,
    .photo-section h1 {
        font-size: 2rem;
    }
}
