* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Candara";
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: aliceblue;    
}

.hero {
    padding-top: 80px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-top {
    padding: 17px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15); /* slightly transparent white */
    backdrop-filter: blur(10px);           /* the blur */
    -webkit-backdrop-filter: blur(10px);   /* Safari support */

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-img-container {
    display: block;
    width: 50%;
}

.hero-img-container a {
    display: block;
    text-decoration: none;
    width: 7%;
    margin: -20px 0;
}

.hero-img-container a img {
    display: block;
    width: 199%;
}

.hero-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-nav ul a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;    
    transition: all 0.3s ease;
    transform-origin: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-nav ul a:not(.contact):hover {
    color: lightblue;
    transform: scale(1.1); 
    font-weight: bolder;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.contact {
    background-color:  lightblue;
    font-weight: 100;
    border-radius: 15px;
    padding: 10px 15px;
}

.contact:hover {
    transform: scale(1.1); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* FOOTER */
.footer {
    display: flex;
    flex-direction: row;
    background-color: black;
    padding: 30px 40px;
}

.footer-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-img-container img {
    display: block;
    width: 100%;
}

.footer-img-container {
    width: 10%;
}

.extras ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.extras ul a {
    text-decoration: none;
    color: grey;
}

.copyrights {
    color: grey;
}

/* HEADER AND FOOTER RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }

    .hero-top {
        padding: 12px 15px;
    }

    .hero-img-container {
        width: 40%;
    }

    .hero-img-container a {
        width: 35%;
        margin: 0;
    }

    .hero-img-container a img {
        width: 100%;
    }

    .hero-nav ul {
        gap: 15px;
        font-size: 13px;
    }

    .hero-nav ul a {
        font-size: 13px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-section {
        flex-direction: column;
        gap: 20px;
    }

    .footer-img-container {
        width: 30%;
    }
}

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .hero-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-nav.active {
        right: 0;
    }

    .hero-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .hero-nav ul a {
        color: black;
        font-size: 18px;
    }

    .contact {
        background-color: transparent;
        color: black;
    }
}
