/* Base Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(62, 115, 160, 1) 50%, rgba(255, 255, 255, 1) 100%);    background-position: center 90%;
    font-family: "Urbanist", sans-serif;
}
*{
    font-family: "Urbanist", sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
    height: 100px;
    background: url('colab standard logo transparent.png') no-repeat center;
    background-size: contain;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 80px;
    text-decoration: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #4f82ae;
    font-size: 20px;
    font-weight: bold;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Contact Section */

.contact-text {
    color: #000000;
    margin-top: 100px;
    text-align: center;
}
.contact-info {
    width: 40%;
    text-align: left;
}


.contact-text h1 {
    margin: 0;
    font-size: 32px;
    color: #4f82ae;
}

.contact-text p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    width: 700px;
    height: 400px;
    margin: 120px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 10px 10px 20px #111;
    border-radius: 10px;
    gap: 20px;
    backdrop-filter: blur(30px);
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.contact-info {
    width: 40%;
    text-align: left;
}

.contact-logo {
    width: 120px;
    margin-bottom: 10px;
}

.contact-info h2 {
    margin: 10px 0;
    color: #333;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.contact-form {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.form-group input {
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    resize: none;
}

.submit-button {
    width: 100px;
    padding: 12px;
    font-size: 18px;
    background-color: #246fdb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: auto;
}

.submit-button:hover {
    background-color: #a0b9e0;
}

/* Footer */
.sub-footer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 50px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.sub-footer img {
    width: 350px;
    height: 250px;
    object-fit: contain;
}

.sub-footer p {
    text-align: center;
}

.sub-footer h2 {
    border: solid black 1px;
    margin: 20px 0;
}

.foot {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foot h2{
    width: 500px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.social-icon {
    font-size: 30px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}

footer {
    background-color: #3e73a0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: white;
    font-weight: 500;
    margin-top: 40px;
}

/* Contact Footer */
.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    gap: 10px;
}

.mail img {
    width: 70px;
    height: 40px;
    object-fit: contain;
}

.mail p {
    margin: 0;
    min-width: 200px;
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 200px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
background: #80a158;
    color: #ffffff;
    padding: 40px 20px;
    font-size: 30px;
    font-weight: bold;
    height: 560px;
    box-shadow: 10px 10px 20px #111;
    text-decoration: none;
        font-size: 20px;
    padding: 20px;
}
.parallax-overlay a{
    text-decoration: none;
}

.map-container {
    display: flex;
    box-shadow: 10px 10px 20px #111;
}

.map-container iframe {
    width: 900px;
    height: 600px;
    border: none;
    display: flex;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 15px;
    }
    .contact-text h1 {
        font-size: 24px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .logo {
        width: 120px;
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding-top: 50px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        margin-right: 0;
    }

    .nav-links.active {
        right: 0;
        height: 300px;
    }

    .nav-links li {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    .contact-container {
        flex-direction: column;
        width: 90%;
        height: auto;
        margin: 40px auto;
        padding: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .contact-form textarea {
        width: 100%;
    }

    .submit-button {
        width: 100%;
        margin: 20px 0 0 0;
    }

    .map-section {
        flex-direction: column;
        margin-top: 100px;
        padding: 20px 10px;
        background-attachment: scroll;
    }

    .parallax-overlay {
        width: 100%;
        height: auto;
        font-size: 16px;
        text-align: center;
        padding: 20px;
        box-shadow: none;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
        margin-top: 20px;
        box-shadow: none;
    }
.sub-footer {
        display: flex;
        flex-direction: column;
        width: auto;
    } 
        .sub-footer h2{
        width: 380px;
    }

    .sub-footer img {
        width: 200px;
        height: auto;
    }

    .mail {
        display: flex;
        gap: 5px;
    }

    .mail img {
        width: 80px;
        height: auto;
    }

    .mail p {
        width: auto;
        font-size: 0.9em;
    }
    .contact{
        gap: 0;
    }
        .sub-footer h2{
        width: 380px;
    }

    footer {
        font-size: 14px;
        padding: 10px;
        height: auto;
    }
    .foot{
        width: 100%;
    }
        .foot p{
        width: 100%;
        display: flex;
    }
}