@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
 
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    height: auto;
    min-height: 100vh;
}

#scrollTopBtn{
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #011248;
    color: #fdea00;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn:hover{
    background: #fdea00;
    color: #011248;
    transform: translateY(-5px);
}

#menu{
    font-size: 18px;
    position: fixed;
    top: 0.5%;
    right: 0.5%;
    outline: none;
    background: #fff;
    border: none;
    color: #011248;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 11;
    display: none;
}

#menu_close{
    display: none;
    font-size: 18px;
    position: fixed;
    top: 0.5%;
    right: 0.5%;
    outline: none;
    background: #fff;
    border: none;
    color: #011248;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: blur(2em);
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1;
}

.logo1{
    position: fixed;
    width: 80px;
    height: 60px;
    display: none;
    z-index: 2;
}

.logo1 img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.nav .logo{
    width: 80px;
    height: 60px;
}

.nav .logo img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.nav .links{
    display: flex;
}

.nav .links a {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 25px;
    border-radius: 3px;
    margin: 0 7px;
    background: #011248;
    transition: .3s ease;
}

.nav .links a:hover{
    color: #011248;
    background: #fff;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.front {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imgs/WhatsApp Image 2026-02-09.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* MOVE TO BOTTOM */
.front.move-down .front_texts {
    transform: translateY(35vh); /* adjust if needed */
}

.front .front_texts{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    border-radius: 4px;
    background: transparent;
    backdrop-filter: blur(1em);
    transform: translateY(0);
    transition: transform 1.5s ease-in-out;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.2);
}

.front .front_texts h1{
    text-align: center;
    font-size: 3em;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffff;
    letter-spacing: 35px;
    text-shadow: 1px 1px 0 #000;
}

.front .front_texts p{
    font-size: 18px;
}

.front .front_texts button{
    border: none;
    background: #011248;
    color: #fdea00;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    transition: .3s ease-in;
}

.front .front_texts button:hover{
    background: #fff;
    color: #011248;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about .heading{
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .heading h1{
    font-size: 5em;
    color: #fdea00;
    text-transform: uppercase;
    letter-spacing: 40px;
    margin-bottom: 10px;
}

.about .heading span{
    width: 100px;
    height: 5px;
    background: #fdea00;
    margin-right: 20px;
}

.about .about_items{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about_items .items{
    width: 30%;
    background: #fff;
    margin: 0 10px;
    border-radius: 3px;
    padding: 6px 4px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);

}

.about .about_items .items h2{
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fdea00;
    font-size: 25px;
    color: #011248;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about .about_items .items p{
    font-size: 14px;
    color: rgb(81, 81, 81);
    margin-top: 5px;
}

.sections{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    margin: 5% 0;
}

.sections .items{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sections:nth-child(odd) .items:first-child{
    background: #011248;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    align-items: flex-start;
    padding-left: 40px;
}

.sections:nth-child(even){
    flex-direction: row-reverse;
}

.sections:nth-child(even) .items:first-child{
    background: #011248;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    align-items: flex-end;
}

.sections h1{
    font-size: 3em;
    color: #fdea00;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    padding: 0 20px;
}

.sections span{
    width: 100px;
    height: 5px;
    background: #fdea00;
    margin: 15px 20px;
}

.sections .items p{
    font-size: 30px;
    color: #011248;
    margin: 10px 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: right;
    padding-right: 20px;
}

.sections:nth-child(even) .items p{
    text-align: left;
     padding-left: 20px;
}

.sections .items i{
    color: #011248;
    margin-right: 10px;
}

.gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 0;
    z-index: 1;
}

.gallery .heading{
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .heading h1{
    font-size: 5em;
    color: #fdea00;
    text-transform: uppercase;
    letter-spacing: 40px;
    margin-bottom: 10px;
}

.gallery .heading span{
    width: 100px;
    height: 5px;
    background: #fdea00;
    margin-right: 20px;
}

.gallery .items{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 5px;
}

.gallery .items img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    cursor: pointer;
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery .items img:hover{
    scale: 110%;
}

/* WHEN VISIBLE */
.gallery .items img.show {
    opacity: 1;
    transform: translateY(0);
}

/* OPTIONAL: button animation too */
.gallery .items button {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery .items button.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery .items button{
    background: #fff;
    border: none;
    color: #011248;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 2em;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in;
}

.gallery .items button:hover i{
    margin-left: 20px;
}

.gallery .items button:hover{
    transform: scale(90%);
    letter-spacing: 6px;
}

/* LIGHTBOX OVERLAY */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

/* IMAGE */
.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    animation: scaleIn 0.3s ease;
}

/* CLOSE */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* LIGHTBOX NAV BUTTONS */
.lightbox .lb-nav {
    position: absolute;
    top: 50%;
    font-size: 30px;
    background: #fff;
    backdrop-filter: blur(2em);
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15);
    color: #000000;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
}

.lightbox .lb-prev {
    left: 10px;
}

.lightbox .lb-next {
    right: 10px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}


.contacts{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    padding: 2% 0;
}

.contacts form{
    width: 70%;
    background: #fff;
    border-radius: 3px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
}

.contacts form .heading{
    width: 100%;
    display: flex;
}

.contacts form .heading h1{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 3em;
    letter-spacing: 20px;
    text-transform: uppercase;
    color: #011248;
    border-bottom: 3px solid gray;
}

.contacts form .items{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contacts form .items .fields{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 25px 0;
}

.contacts form .items .fields i{
    font-size: 25px;
    margin-right: 5px
}

.contacts form .items .fields p{
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.contacts form .items .fields input{
    width: 100%;
    border: none;
    text-transform: capitalize;
    font-size: 18px;
    border-bottom: 1px solid gray;
    padding: 10px;
    outline: none;
}

.contacts form .items .fields textarea{
    width: 100%;
    height: 200px;
    font-size: 18px;
    border: none;
    text-transform: capitalize;
    border-bottom: 1px solid gray;
    padding: 10px;
    outline: none;
}

.contacts form button{
    border: 2px solid #fff;
    outline: none;
    color: #011248;
    font-size: 25px;
    border-radius: 4px;
    background: #fff;
    padding: 10px 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: .3s ease;
}

.contacts form button:hover{
    border: 2px solid #011248;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 8px;
}

.contacts .media{
    width: 100%;
    margin-top: 15px;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts .media .items{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    padding: 10px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.contacts .media .items:nth-child(1):hover{
    background: #011248;
    color: #fff;
}

.contacts .media .items:nth-child(2):hover{
    background: rgb(37, 221, 37);
    color: #fff;
}

.contacts .media .items:nth-child(3):hover{
    background: #f83232;
    color: #fff;
}

.contacts .media .items i{
    font-size: 4em;
}

.contacts .media .items p{
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 2px;
}

.contacts .maps{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.contacts .maps iframe{
    width: 80%;
    height: 100%;
}

.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.footer span{
    width: 80%;
    background: #011248;
    height: 0.5px;
    margin-bottom: 10px;
}

.footer .items{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer p{
    font-size: 15px;
    color: #011248;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 15px;
    cursor: pointer;
    transition: .3s ease;
}

.footer p:nth-child(2):hover{
    color: #8ea8ff;
}

@media (max-width: 768px) {

    #menu{
        display: block;
    }

    /* NAV */
    .nav {
        flex-direction: column;
        padding: 8px;
        height: 100vh;
        width: 50%;
        margin-left: -100%;
        transition: margin-left 0.3s ease;
    }

    .logo1{
        top: 1%;
        left: 1%;
        display: block;
    }

    .nav .logo{
        width: 80px;
        height: 60px;
        position: fixed;
        top: 1%;
        left: 1%;
    }

    .nav .links {
        flex-direction: column;
        align-items: left;
        justify-content: end;
        width: 100%;
        height: 90vh;
    }

    .nav .links a {
        width: 95%;
        margin: 15px 0;
        padding: 20px 0;
        font-size: 13px;
        letter-spacing: 1px;
    }

    /* FRONT */
    .front {
        height: 100vh;
        justify-content: center;
    }
    
    .front .front_texts{
        width: 80%;
        border-radius: 4px;
        box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    }

    .front .front_texts h1 {
        font-size: 1.5em;
        letter-spacing: 7px;
        text-align: center;
    }

    .front .front_texts button {
        font-size: 14px;
    }

    /* ABOUT */
    .about .heading h1,
    .gallery .heading h1 {
        font-size: 2em;
        letter-spacing: 10px;
        text-align: center;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }

    .lightbox .lb-nav {
        font-size: 20px;
        padding: 5px;
    }

    .lightbox .close {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }

    .about .about_items {
        flex-direction: column;
    }

    .about .about_items .items {
        width: 90%;
        margin: 10px 0;
    }

    /* SECTIONS */
    .sections {
        flex-direction: column !important;
        height: auto;
        padding: 20px 0;
    }

    .sections .items {
        width: 100%;
        border-radius: 0 !important;
        align-items: center !important;
        padding: 20px !important;
    }

    .sections h1 {
        font-size: 2.5em;
        padding-left: 0;
        text-align: center;
    }

    .sections .items p {
        font-size: 16px;
        text-align: center !important;
        padding: 0;
    }

    /* GALLERY */
    .gallery .items {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CONTACT FORM */
    .contacts form {
        width: 90%;
    }

    .contacts form .heading h1 {
        font-size: 2em;
        letter-spacing: 8px;
    }

    /* CONTACT MEDIA */
    .contacts .media {
        flex-direction: column;
    }

    .contacts .media .items {
        width: 95%;
        margin: 10px 0;
    }

    .contacts .media .items i{
        font-size: 2em;
    }

    .contacts .media .items p{
        font-size: 14px;
    }

    /* MAP */
    .contacts .maps iframe {
        width: 95%;
    }

    /* FOOTER */
    .footer p {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {

    #scrollTopBtn{
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .nav{
        width: 80%;
    }

    .nav .links {
        flex-direction: column;
        align-items: left;
        justify-content: end;
        width: 100%;
        height: 90vh;
    }

    .nav .links a {
        width: 100%;
        margin: 10px 0;
        padding: 15px 0;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .front .front_texts{
        width: 95%;
    }

    .front .front_texts h1 {
        font-size: 1.4em;
        letter-spacing: 6px;
    }

    .front .front_texts button {
        font-size: 14px;
        padding: 6px 8px;
    }

    
    /* ABOUT */
    .about .heading h1,
    .gallery .heading h1 {
        font-size: 1.2em;
        letter-spacing: 5px;
    }

    .about .heading span{
        width: 90px;
        height: 3px;
        margin-right: 10px;
    }

    .gallery .items {
        grid-template-columns: 1fr;
    }

    .contacts form{
        width: 95%;
    }

    .contacts form .items .fields{
        margin: 20px 0;
    }

    .contacts form .items .fields i{
        font-size: 20px;
    }

    .contacts form .items .fields p{
        font-size: 18px;
        letter-spacing: 3px;
    }

    .contacts form .items .fields input{
        font-size: 15px;
        padding: 8px;
    }

    .contacts form .items .fields textarea{
        width: 100%;
        height: 150px;
        font-size: 15px;
        padding: 8px;
    }

    .contacts form .heading h1 {
        font-size: 1.5em;
        letter-spacing: 5px;
    }

    .contacts form button {
        font-size: 18px;
        letter-spacing: 5px;
        width: 100%;
    }

    /* FOOTER */

    .footer .items{
        flex-direction: column;
    }

    .footer p {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .about .about_items .items {
        width: 45%;
    }

    .gallery .items {
        grid-template-columns: repeat(3, 1fr);
    }

    .contacts form {
        width: 80%;
    }
}
