
* {
    margin: -5px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #cab178;
    color: #11110f;
    margin: 0;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    flex-direction: column;
}


header {
    width: 100%;
    background-color: #11110f;  
    padding: 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header .logo-container {
    display: flex;
    align-items: center;
    color: #cab178;
    font-size: 1.2rem;
    font-weight: bold;
}

header .logo-container img {
    width: 37px;
    height: 32px;
    margin-right: 3px;
    margin-left: 3px;
}

header h1 {
    font-size: 1.5rem;
}

header .menu-toggle {
    font-size: 30px;
    cursor: pointer;
    color: #cab178;
    display: block;
}


#mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 5px;
    background-color: #11110f;
    opacity: 80%;
    width: 100%;
    padding: 10px 0;
}

#mobile-menu ul {
    list-style: none;
    text-align: center;
}

#mobile-menu ul li {
    margin: 10px 0;
}

#mobile-menu ul li a {
    color: #cab178;
    font-size: 1.1rem;
    padding: 10px;
    display: block;
    text-align: center;
}

#mobile-menu ul li a:hover {
    background-color: #504630;
}


section {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: #cab178;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-top: 20px;
}


h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #11110f;
}

p {
    font-size: 1rem;
    text-align: center;
    color: #cab178;
    margin-bottom: 20px;
}

.copyright {margin-top: 16px}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #4e4123;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

form input[type="text"],
form input[type="email"] {
    height: 40px;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    background-color: #11110f;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background-color: #524833;
}


footer {
    background-color: #11110f;
    color: #cab178;
    padding: 37px;
    text-align: center;
    margin-top: 3px;
}

footer ul.navigation {
    list-style-type: none;}

    footer ul.navigation a:link
{color: #cab178;
text-decoration: none;}

footer ul.navigation a:visited
{color: #cab178}

footer ul.navigation a:hover
{color: #cab178;
    text-decoration: underline;}

footer ul.navigation a:active
{color: #75562F}


footer p {
    font-size: 1rem;
}

footer small {
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}


@media (max-width: 600px) {
    body {
        padding: 0;
    }

    section {
        padding: 25px;
        margin: -3px;
    }
    
    .homepage section { padding: 240px;
    margin-left: 5px;} 
  

    header h1 {
        font-size: 1.4rem;
        margin-bottom: -9px;
    }

    .logo-container img {
        width: 25px;
        height: 25px;
    }

    header .menu-toggle {
        font-size: 28px;
    }

    #mobile-menu ul li {
        margin: 15px 0;
    }

    #mobile-menu ul li a {
        font-size: 1.2rem;
        padding: 15px;
    }

    form input,
    form textarea {
        font-size: 1rem;
        padding: 12px;
        width: 100%;
    }

    form button {
        font-size: 1.1rem;
        padding: 12px;
    }
}
