* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: garamond;
}

body {
    background-color: #FAFAFA;
    color: #1F2E3C;
}

header {
    background-color: #7C989F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    font-size: 1.5em;
    color: #FAFAFA;
    text-decoration: none;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 1em;
}

.burger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #FAFAFA;
}

.hero {
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-40%, -50%);
    color: #FAFAFA;
    font-size: 2em;
    padding: 50px;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    header .burger {
        display: block; 
    }

    header nav ul {
        display: none; 
        flex-direction: column;
    }

    header nav ul.active {
        display: flex; 
    }

    .hero-text {
        font-size: 1.5em; 
        padding: 20px;
    }
}


/* --------Contact-------- */

.contact-section {
    padding: 40px;
    background-color: #FAFAFA;
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact-section h2 {
    font-size: 2em;
    color: #1F2E3C;
    margin-bottom: 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    gap: 20px;
}

.contact-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-column label {
    font-weight: bold;
}

.contact-column input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-full-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-full-row label {
    font-weight: bold;
}

.contact-full-row input, 
.contact-full-row textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.submit-button {
    background-color: #2A3A49;
    color: #FAFAFA;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #1F2E3C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
}


/* --------Info------- */

.info-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #FAFAFA;
}

.info-box {
    flex: 1;
    background-color: #E3F2FD;
    color: #2A3A49;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #1F2E3C;
}

.info-box p {
    font-size: 1rem;
    margin: 0;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        gap: 20px;
    }
}


/* --------Map-------- */

.map-section {
    padding: 40px;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}


/* -------footer--------- */


.footer {
    background-color: #8DAAB1; 
    color: #FAFAFA;
    padding: 20px 5%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px; 
}

.footer-logo h3 {
    color: #FAFAFA;
    font-size: 1.8em;
    margin: 0;
    text-decoration: none;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-nav ul li {
    margin-bottom: 5px;
}

.footer-nav ul li a {
    color: #FAFAFA;
    text-decoration: underline;
    font-size: 1.1em;
}

.footer-contact h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #FAFAFA;
}

.footer-contact form {
    display: flex;
    flex-direction: column;
}

.footer-contact input,
.footer-contact textarea {
    margin-bottom: 5px;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    border: 1px solid #8DAAB1;
    resize: none;
}

.footer-contact button {
    padding: 10px 20px;
    font-size: 1.1em;
    background-color: #2A3A49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Bottom Line Section */
.footer-bottom {
    background-color: #2A3A49; 
    text-align: center;
    padding: 15px 0; 
    color: #FAFAFA;
    margin: 0;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center; 
        gap: 15px; 
    }

    .footer-logo h3 {
        font-size: 1.5em; 
        text-align: center;
    }

    .footer-nav ul {
        text-align: center; 
    }

    .footer-nav ul li a {
        font-size: 1em; 
    }

    .footer-contact h4 {
        text-align: center;
        font-size: 1.2em; 
    }

    .footer-contact input,
    .footer-contact textarea {
        font-size: 1em; 
        width: 100%; 
    }

    .footer-contact button {
        font-size: 1em;
        width: 100%; 
    }
}

/* -------wiggle----- */

@keyframes wiggle {
    0% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}

.wiggle {
    animation: wiggle 0.5s ease-in-out;
}

