@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(to right, rgba(0, 0, 255, 0.483), #ffc0cb79);
    color: #fff;
    line-height: 1.6;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* BANNER LOGO AN&MONE */

.banner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    overflow-x: hidden; /* no horizontal scroll */
}

.banner-logo-container {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column;
    padding: 20px 0;
    overflow-x: hidden;
}

/* Logo styling */
.banner-logo {
    width: 95%; 
    height: auto;
    /* min-width: 300px; */
    max-height: none;
    object-fit: contain;
    margin: 20px 0;
    filter: invert(100%) sepia(23%) saturate(100%) hue-rotate(314deg) brightness(86%) contrast(80%); 
    transition: transform 0.1s ease, filter 0.1s;
    will-change: transform;
}



.scroll-down {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 2.3s, color 0.3s;
}

.scroll-down:hover {
    background-color: #ffffff66;
    color: #000;
    transform: scale(1.1);
}


.nav-bar {
    background-color: rgba(255, 192, 203, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-sections ul {
    display: flex;
    list-style: none;
}

.nav-sections li {
    margin-right: 20px;
}

.nav-sections a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-sections a.active {
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}


.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.covers-part {
    text-align: center;
    padding: 40px 0;
}

.subsections {
    font-size: 40px;
}

.covers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.individual-cover {
    flex: 0 1 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.individual-cover img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.individual-cover:hover img {
    transform: scale(1.05);
}

.individual-cover .text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.individual-cover:hover .text-box {
    transform: translateY(0);
}


.presentation-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 50px;
}

.pres-text {
    flex: 1 1 100%;
}



.google-maps-iframe {
    width: 80%;
    max-width: 600px; /* Adjust this value to your preference */
    height: 450px;
    border: solid rgba(250, 128, 114, 0.155);
    border-radius: 15px;
    display: block;
    margin: 20px auto;
}


.contact {
    text-align: center;
    width: 80%;
    padding: 40px 10px;
    background-color: rgba(255, 192, 203, 0.3);
    border-radius: 15px;
    margin: 20px auto;
    max-width: 800px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 20px auto;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.submit-button,
.email-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover,
.email-button:hover {
    background-color: #000;
    color: #fff;
}


.social-media-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-media-floating a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    text-decoration: none;
}

.social-media-floating a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    color: whitesmoke;
}

a.emoji {
    font-size: 43px;
    vertical-align: middle;
    line-height: 2;
    text-decoration:none
  }

footer {
    background-color: rgba(250, 235, 215, 0.2);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* FORM */
.form-group {
    margin: 10px 0;
}
.form-message {
    margin-top: 10px;
    padding: 10px;
    display: none;
}
.form-success {
    background-color: #d4edda;
    color: #155724;
}
.form-error {
    background-color: #f8d7da;
    color: #cc1225;
}
.form-disclamer{
    padding: 10px;
    font-size: small;
}

 /*LANG SWITCH*/
 .lang-switch {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.lang-switch:hover {
    background-color: #2980b9;
}

[data-lang]:not([data-lang="en"]) {
    display: none;
}


/* Responsiveness */
@media (max-width: 768px) {
    .nav-bar {
        flex-wrap: wrap;
    }

    .nav-sections {
        display: none;
        width: 100%;
        order: 3;
        background-color: rgba(255, 192, 203, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
    }

    .nav-sections ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-sections li {
        margin: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        display: block;
    }

    /* Layout changes */
    .presentation-box {
        flex-direction: column;
    }

}

/* Medium screens */
@media (max-width: 480px) {
    .header-logo a {
        font-size: 20px;
    }

    .social-media-floating a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    /* Banner adjustments */
    .banner-logo {
        width: 90%;
    }
}

/* Small screens and height constraints */
@media (max-width: 300px), (max-height: 600px) {
    .banner-logo-container {
        height: auto;
        min-height: 60vh;
    }

    .banner-logo {
        width: 90%;
        max-height: 40vh;
    }

}

/* Extra small screens */
@media (max-width: 200px) {
    .banner-logo {
        width: 90%;
    }
}