/* Universal */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
body{
    /* font-family: "Esteban", serif; */
    /* font-family: "Oleo Script", serif; */
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fef9ec;
}


/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    box-shadow: 0 0 20px 0 rgba(69, 80, 115, 0.1);
    backdrop-filter: blur(100px);
    height: 5rem;
    padding: 0 3rem;
    z-index: 1;
    border: 2px solid white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 600px; /* Set a fixed width */
    
}

.navbar-brand img {
    height: 75px;
    width: auto;
    cursor: pointer;
    margin-right: 1rem;
}

#main_nav {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;

}

.navbar-nav li {
    padding: 0 1.25rem;
    margin: auto;
}

.navbar-nav li a {
    color: #001c49;
    font-size: 1.25rem;
}

.navbar-nav li:hover {
    text-decoration: underline;
    text-decoration-color: #001c49;
    cursor: pointer;
    transition: 0.3s;
}

.navbar-nav li:visited {
    border-radius: 50px;
}

.hamburger {
    display: none;
}



.contact-container-1{
    height: 45vh;
    width: 100%;
    padding: 0 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-headline h1{
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
}
.contact-headline h3{
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.contact-form-section{
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    font-family: "Playfair Display", serif;
}
.form-group input, textarea{
    width: 100%;
    padding: 0.625rem;
    border-radius: 5px;
    border: 1px solid #001c49;
    font-size: 1.2rem;
}

.form-group label{
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    color: #001c49;
}
.form-group-radio{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin: 2rem 0;
    font-family: "Playfair Display", serif;
}
.form-group-radio label{
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    color: #001c49;
    cursor: pointer;
}
.form-group-radio input{
    width: 2rem;
    height: 1.5rem;
}
.form-group button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    background-color: #001c49;
    color: white;
    font-size: 1.25rem;
    border: 1px solid black;
    cursor: pointer;
    width: 30rem;
}

.form-group button span {
    /* For the arrow icon */
    margin-top: 3px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.form-group button:hover span {
    transform: translateX(5px);
    /* Move arrow Xpx to the right on hover */
}




.contact-address-section{
    height: 100vh;
    width: 100%;
    padding: 0 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-address-container{
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    font-family: "Playfair Display", serif;
}
.contact-address-container h3{
    /* margin: rem 0; */
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}
.contact-email-phone{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}
.contact-email-phone div{
    border-radius: 5px;
    font-size: 3rem;
}
.contact-email {
    padding: 3rem 6rem;
    background: #24DBC3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid white;
    box-shadow: 0 0 20px 0 rgba(36, 219, 195, 0.5);
}
.contact-email:hover{
    box-shadow: none;
}

.contact-email img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: auto;
    opacity: 0.05;
    z-index: 1;
}

.contact-email a {
    /* font-weight: 500; */
    position: relative;
    z-index: 2;
}

.contact-phone {
    padding: 3rem 5rem;
    background-color: #24DB68;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid white;
    box-shadow: 0 0 20px 0 rgba(36, 219, 104, 0.5);
}
.contact-phone:hover{
    box-shadow: none;
}
.contact-phone img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
}

.contact-phone a {
    position: relative;
    z-index: 2;
}

.contact-email-phone div a{
    text-decoration: none;
    color: #001c49;
}


.contact-socials-section{
    height: 70vh;
    width: 100%;
    padding: 0 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-socials-section h3{
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}
.contact-social-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* justify-content: center; */
    align-items: center;
}
.contact-social-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-tile img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.social-tile span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Social Media Colors */
.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #1877f2;
}

.whatsapp {
    background: #25D366;
}

.twitter {
    background: #1DA1F2;
}

.social-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}




/*Footer Section*/
footer {
    background-color: #001c49;
    color: white;
    border-radius: 15px 15px 0 0;
}

.footer-container {
    padding: 2rem 10rem 2rem 10rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
}

.f-top{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 550px;
}

.footer-links, .footer-contacts {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-contacts a {
    color: #01bbd5;
}

.social-links a img:hover {
    transform: scale(1.1);
}

.copyright-container {
    background-color: #001c49;
    padding: 0rem 10rem;
    color: white;

}

.copyright {
    border-top: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 0;
}
.copyright .shotout{
    font-size: 12px;
}
.copyright .shotout a{
    text-decoration: none;
    color: #fef9ec;
    text-decoration: underline;
}




/*Desktop*/
@media (max-width: 992px) {
    /*Header*/
    header {
        border: none;
        box-shadow: 0 0 20px 0 rgba(69, 80, 115, 0.1);
        backdrop-filter: blur(100px);
        border-bottom: 1px solid white;
        width: 100%;
    }

    .container {
        display: flex;
        width: 100%;
        margin: 0;
    }

    .navbar {
        border: none;
        margin: 0;
        width: 100%;
        border-radius: 0;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .navbar-brand img {
        height: auto;
        width: 100%;
        max-width: 80px;
        cursor: pointer;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;

    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background-color: black;
        margin: 5px 0;
        border-radius: 50px;
    }

    #main_nav.active {
        height: 80vh;
        width: 100%;
        position: absolute;
        top: 5rem;
        left: 0;
        right: 0;
        /* background-color: #e9dfcdeb; */
        background-color: #e9dfcdf8;
        transition: 0.5s;
        overflow: hidden;
        z-index: 1001;
    }

    #main_nav ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    #main_nav.active ul {
        opacity: 1;
    }

    #main_nav ul li a {
        margin: 20px 0;
    }
}


@media only screen and (max-width: 768px) {
    .contact-container-1, .contact-form-section, .contact-address-section, .contact-socials-section{
        width: 100%;
        height: auto;
        overflow-x: hidden;
    }
    .contact-container-1{
        padding: 5rem 2rem 0 2rem;
    }
    .contact-headline h1{
        /* font-size: 4rem; */
        line-height: 4.25rem;
    }
    .contact-headline h3{
        /* font-size: 1.5rem; */
    
        line-height: 2.25rem;
    }

    

    .contact-form-section {
        height: auto;
        padding: 2rem 1rem;
      }
      
      .form-group {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1.5rem 0;
      }
      
      .form-group label {
        font-size: 1.5rem;
      }
      
      .form-group input, 
      .form-group textarea {
        font-size: 1rem;
        padding: 0.5rem;
      }
      
      .form-group-radio {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .form-group-radio label {
        font-size: 1.5rem;
      }
      
      .form-group-radio > div {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      
      .form-group-radio input {
        width: 1.5rem;
        height: 1.5rem;
      }
      
      .form-group button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1.25rem;
      }



      .contact-address-section {
        height: auto;
        padding: 2rem 2rem;
      }
      
      .contact-address-container {
        gap: 1.5rem;
        width: 100%;
      }
      
      .contact-email-phone {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
      }
      
      .contact-email-phone div {
        width: 100%;
        font-size: 1.5rem;
        text-align: center;
      }
      
      .contact-email,
      .contact-phone {
        padding: 1.5rem 1rem;
      }
      .contact-email img{
        width: 100px;
        height: auto;
        opacity: 0.2;
      }
      .contact-phone img{
        width: 60px;
        height: auto;
        opacity: 0.4;
      }
      
      .contact-address-container h3 {
        font-size: 1.5rem;
        text-align: center;
      }
      
      .contact-map {
        width: 100%;
      }
      
      .contact-map iframe {
        width: 100%;
        height: 250px;
      }



      .contact-socials-section {
        height: auto;
        padding: 2rem 1rem;
      }
      
      .contact-socials-section h3 {
        font-size: 1.8rem;
      }
      
      .contact-social-container {
        gap: 1.5rem;
        width: 100%;
      }
      
      .social-tile {
        width: 150px;
        height: 150px;
        padding: 1.5rem;
    }

    .social-tile img {
        width: 40px;
        height: 40px;
    }

    .social-tile span {
        font-size: 1rem;
    }


    
    .f-top{
        gap: 3rem;
    }
    .footer-container{
        padding: 2rem 2rem;
        gap: 2.5rem;
    }
    .copyright-container{
        padding: 0rem 2rem;
    }
    .copyright{
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
    }
}