
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    font-family: "DM Sans", serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

header {
    background-color: white; 
    padding: 10px 20px;
}

.logo {
    height: 50px;
    float: left;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 13px;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 20px;
    padding: 30px;
}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 50px 50px;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 100px;
    margin-right: 10px;
    border-radius: 10px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
}

.hero-image {
    max-width: 60%;
    height: auto;
}

h1 {
    font-size: 60px;
    font-weight: 1000;
}

 p {
    font-size: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: white;
}

h1 {
    font-size: 58px;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

label {
    font-size: 20px;
    margin-bottom: 5px;
}

input, textarea {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

textarea {
    height: 100px;
}

button {
    padding: 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out, transform 0.1s ease-in-out;
}

button:hover {
    background-color: #555;
    transition: ease-in-out 2s;
    transform: scale(1.05);
}

@media (max-width: 1175px) {
    .hero {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0px;
        margin: 0px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    h1 {
        font-size: 40px;
    }

    p {
        font-size: 18px;
    }
}

.hamburger {
    display: none; /* Hidden by default */
    font-size: 30px; /* Size of the hamburger icon */
    cursor: pointer; /* Pointer cursor on hover */
}

@media (max-width: 570px) {
    .nav-links {
        display: none; /* Hide the navigation links by default */
        flex-direction: column; /* Stack links vertically */
        position: absolute; /* Position it absolutely */
        top: 54px; 
        right: 0; /* Align to the right */
        background-color: white; /* Background color for dropdown */
        width: 100%; /* Full width */
        z-index: 1000; /* Ensure it appears above other content */
    }

    .nav-links.active {
        display: flex; /* Show links when active */
        width: 100%;
        left: 0; /* Align to the left */
        right: 0; /* Align to the right */
        margin: 0; /* Remove any margin */
        padding: 0; /* Remove any padding */
        padding-bottom: 20px;
    }

    .nav-links li {
        margin-top: 10px;
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }
}


