body {
    font-family: Georgia;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, lightskyblue, lightgreen);
}
header {
    height: 300px; 
}

header img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #008080;
    font-family: Georgia;
}

h1 {
    text-align: center;
}

form {
    margin-top: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: whitesmoke;
    font-family: Georgia;
}

textarea {
    height: 150px;
}

input[type="submit"] {
    background: lightskyblue;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-family: Georgia;
}

input[type="submit"]:hover {
    background: lightgreen;
}

.navbar {
    display: flex;
    padding: 15px 0;
    align-items: center;
    max-width: 1500px;
    background-color: lightskyblue;
    margin: -9.9px;
    justify-content: space-between;
    padding-right: 100px;
    height: 60px;
}

.navbar .hamburger-btn {
    display: none;
    color: #fff;
    cursor: auto;
    font-size: 1.5rem;
}

.navbar .logo {
    gap: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    width: 40px;
    border-radius: 50%;
    margin-left: 20px;
}

.navbar .logo h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    font-family: Georgia;
}

.navbar .links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.navbar .close-btn {
    display: none;
    color: #000;
    cursor: pointer;
}

.navbar .links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.1s ease;
    font-family: Georgia;
}

.navbar .links a:hover {
    color: #008080;
}

@media screen and (max-width: 950px) {
    .navbar .hamburger-btn {
        display: block; 
    }

    .navbar .logo img {
        display: none; 
    }

    .navbar .links {
        position: fixed;
        top: 0;
        z-index: 10;
        left: -100%;
        display: block;
        height: 100vh;
        width: 100%;
        padding-top: 60px;
        text-align: center;
        background: #fff;
        transition: 0.2s ease;
    }

    .navbar .links.show-menu {
        left: 0;
    }

    .navbar .links a {
        display: block;
        margin: 20px 0; 
        font-size: 1.2rem;
    }

    .navbar .close-btn {
        display: block; 
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

footer {
    background-color: lightskyblue; 
    color: #fff; 
    padding: 40px 0; 
    text-align: center; 
    position: relative; 
}

.footer-content {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-family: Georgia; 
}

.footer-content p {
    margin: 0; 
    font-family: Georgia; 
}

.footer-content h3 {
    margin: 0; 
    font-family: Georgia; 
}

.socials {
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.socials li {
    display: inline-block; 
    margin-left: 10px; 
}

.socials li:first-child {
    margin-left: 0; 
}

.socials li a {
    display: block; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    overflow: hidden; 
    align-items: center; 
}

.socials li a img {
    width: 100%; 
    height: auto; 
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar .links a {
    display: inline-flex;
    margin: 20px 0;
    font-size: 1.2rem;
    color: white;
    animation: fadeIn 0.5s ease forwards; 
    opacity: 0; 
}
.header-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .header-text p {
        font-size: 1rem; 
        line-height: 1.3; 
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column; 
        height: auto; 
        padding-right: 0; 
    }

    .navbar .hamburger-btn {
        display: block; 
    }

    .navbar .logo {
        margin-top: 10px; 
        margin-bottom: 10px; 
        text-align: center; 
    }

    .navbar .links {
        display: none; 
        flex-direction: column; 
        width: 100%; 
        text-align: center; 
    }

    .navbar .links a {
        margin: 10px 0; 
    }

    .navbar .close-btn {
        display: block; 
        position: static; 
    }

    .navbar .hamburger-btn.clicked ~ .links {
        display: flex;
    }
}

.navbar .links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightskyblue; 
    position: absolute;
    top: 100px; 
    left: 0;
    width: 100%;
    z-index: 999; 
}
.links {
    display: none; 
}

.links.active {
    display: block; 
}
