 /* Basic Reset */
 @font-face {
    font-family: "Noto Serif";
    src: url(./assets/Noto_Serif/NotoSerif-VariableFont_wdth\,wght.ttf);
 }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: url('./assets/Banner.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 15rem 2rem;
}

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

.fade-grow {
  opacity: 0;
  font-size: 2.7em;
  animation: fadeInGrow 1s ease-out forwards;
}

@keyframes fadeInGrow {
  to {
    opacity: 1;
    font-size: 3em; /* slight increase */
  }
}

.section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.section h3 {
    margin-bottom: 1rem;
    color: #000;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    nav {
    display: none;
    flex-direction: column;
    background: #005f63;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    }

    nav.active {
    display: flex;
    }

    .menu-toggle {
    display: block;
    }
}