body{
    background-color: black;
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    overflow-x: hidden;
}
img{

    width: 50%;
    border-radius: 3%;
    /*border: solid 1px black;*/
    margin: 10px 10px 10px 25%;
}

*{
    margin: 0;
    padding: 0;
    gap: 10px;
}


.flex {
    display: flex;
}

#header{
    background-color: #bbe4e9;
}

.navbar{
    justify-content: space-between;
    align-items: center;
    padding:20px 0;
}

.logo {
    font-size: 4rem;
    padding-left: 10px;

}

.title {
    font-size: 3rem;
    font-family: "Amatic SC", sans-serif;
    font-weight: 2000;
}

.sub-heading{
    font-size: 2rem;
}

.text{
    font-size: 1.3rem;
    font-family: "Amatic SC", sans-serif;
}

ul li {
    list-style: none;
}

.column-flex {
    display: flex;
    flex-direction: column;
}

.links {
    gap: 15px;
    padding: 0 10px;
}

#hero{

    display: grid;
    grid-template-columns: 50% 50%;
    background-image: url("images/bg-3.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    grid-template-areas: "plain content";
    align-content: center;
}


.main-txt{
    grid-area: content;
    justify-items: center;
    align-items: center;
}

.main-txt h1 {
    font-family: "Chewy", system-ui;
}

#section{
    display: grid;
    grid-template-columns: 50% 50%;
    height: 60vh;
    column-gap: 10px;
}

.part-1{
    height: 60vh;
    background: rgba(251, 180, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(251, 180, 255, 0.85);
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    text-align: center;
    font-size: 1.7rem;
}

.part-1 img {
    height: 60%;
}

.part-2{

    background: rgba(146, 207, 236, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(146, 207, 236, 0.85);
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}
a {
    text-decoration: none;
}

a:hover{
    font-size: 1.8rem;
    color: hotpink !important;
}

.link{
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;

    text-align: center;
    margin-top: 5%;
    color: black;
    font-size: 2rem;
}

.img-half{
    height: 50%;
}
.content-half{
    height: 50%;
    align-items: center;
    text-align: center;
    margin-top: 10%;
}

.content-half a{
    color: white;
}

.form{
    display: grid;
    grid-template-columns: 50% 50%;
}

.form-img{
    height: 80%;
}

input{
    width: 40%;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    font-family: "Chewy", system-ui;
    font-size: 1.2rem;
}

.text-area{
    width: 50%;
    border-radius: 5px;
}

.form-element{
    justify-content: center;
    align-items: center;

}

.my-button {
    padding: 10px 20px; /* Padding around text */
    border: none; /* No border */
    border-radius: 5px; /* Slightly rounded corners */
    cursor: pointer; /* Change cursor on hover */
    font-size: 16px; /* Text size */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.my-button:hover {
    background-color: #4d4e4d; /* Darker green on hover */
}

#contactUs{
    /* From https://css.glass */
    background: rgba(177, 225, 151, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 1px solid rgba(177, 225, 151, 0.85);
    color: white;
}

#footer{
    background-image: url("images/bg-6.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 25vh;
    align-content: center;
    justify-content: center;
}

.about,
.tel-email,
.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}



@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #section{
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .part-1 {
        height: auto;
    }

    .form{
        display: flex;
        flex-direction: column;
    }

    #footer{
        display: flex;
        flex-direction: column;
        height: auto;
    }

}