/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Header Styles */
header {
    background-color: #8b0000;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Navigation */
nav {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav li {
    padding: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-section {
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-section h2 {
    background-color: #8b0000;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.8rem;
}

.section-content {
    padding: 2rem;
}

.section-content h3 {
    color: #8b0000;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.section-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.image-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.image-credit a {
    color: #ffd700;
    text-decoration: none;
}

.image-credit a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-overlay h2 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        padding: 0.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .section-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
}
