* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove flexbox from body */
body {
    background-image: url(chl.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    line-height: 1.6;
    padding: 30px;
}

/* Top text */
.top-text {
    padding: 20px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    margin-bottom: 20px;
    background-color: rgba(0,0,0,0.1);
    color: rgb(255, 238, 184);
}

.top-text h1 {
    font-family: 'Yellowtail', cursive;
    font-size: 5rem;
}

.top-text h3 {
    font-family: 'Times New Roman';
    font-size: 2rem;
}

/* Navigation links */
.nav-links {
    font-family: 'Times New Roman';
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 40px;
}

.nav-links h2 {
    font-size: 3rem;
    color: rgb(255, 238, 184);
}

.nav-links h3 {
    background-color: rgba(0,0,0,0.3);
    color: white;
    font-size: 1.7rem;
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    background-color: yellow;
    color: hotpink;
}

/* Map container */
.map-container {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sections */
.section {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: brown;
}

.section p {
    font-size: 1.1rem;
    color: #444;
}

/* Bold words */
.bold-words {
    font-weight: 900;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-text h1 { font-size: 3.5rem; }
    .top-text h3 { font-size: 1.5rem; }

    .nav-links h2 { font-size: 2.5rem; }
    .nav-links h3 { font-size: 1.4rem; }
    .nav-links a { font-size: 1.3rem; }

    .map-container iframe { height: 250px; }
}
