@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

* p {
    line-height: 2;
}

:root {
    --black: black;
    --white: white;
    --grey: rgb(238, 238, 238);
    --gradient: linear-gradient(to left, #F47213, #000000);
    --orange: #F47213;
    --dark-grey: #181818;
    --trans: rgba(0, 0, 0, 0.7);
    --trans-2: rgba(0, 0, 0, 0.55);
}

img {
    width: 100%;
}

#view {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 10rem;
}

.container {
    max-width: 1068px;
    margin: auto;
    width: 100%;
}

body {
    background-image: url(/assets/background/black-background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    scroll-behavior: smooth;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

.float:hover { 
    transform: scale(105%);
}

.my-float {
    margin-top: 16px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
}

@media (max-width: 1080px) {
    .reverse-on-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: justify;
    }

    .reverse-on-mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: justify;
    }

    .reverse-on-mobile > div {
        width: 100% !important;
    }

    #view > *:not(header):not(footer):not(.banner) {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 10px 0;
    }

    header nav ul.active {
        display: flex;
    }

    header nav ul li {
        margin: 10px 20px;
    }

    .banner {
        position: relative;
        width: 100% !important;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--white);
        background: url('/assets/background/home-banner.webp') no-repeat center center;
        background-size: cover;
        padding: 0; 
        margin: 0;
    }

    .banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
    }

    .banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .banner-content h1 {
        position: relative;
        z-index: 1;
        font-size: 22px; 
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .banner-content p {
        position: relative;
        z-index: 1;
        max-width: 600px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.6;
    }

    .grid, .section-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        transform: scale(0.9);
    }

    #view, .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    #view {
        margin-top: 5rem;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    .reviews h1,
    .reviews .review-title {
        text-align: center !important;
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
    }
    
    .reviews p {
        margin-bottom: 1rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    .reviews-images img {
        max-width: 260px !important;
        height: auto !important;
        margin: 0.5rem auto;
        display: block;
    }

    .sponsors-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .sponsor-logos {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sponsor-logos img {
        display: block;
        width: 220px; 
        max-width: 90%;
        height: auto;
    }

    .footer,
    .footer-bottom {
        margin: 0 !important;
        padding: 0.8rem 1rem !important;
        width: 100% !important;
    }

    .sewing-img img {
        width: 100% !important;
        max-width: 380px !important;
        height: auto !important;
        display: block !important;
        margin: 1rem auto !important;
    }

    .supportus {
        padding: 1rem 1.5rem !important;
    }

    .supportus-form input,
    .supportus-form textarea {
        width: 100% !important;
        padding: 0.7rem !important;
        font-size: 1rem !important;
    }

    .contactus iframe,
    .supportus iframe {
        width: 100% !important;
        max-width: 400px !important;
        height: 180px !important;
        border: 0;
        display: block !important;
        margin: 1rem auto !important;
    }

    .float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .reviews {
        padding: 2.5rem 1rem;
    }

    .reviews p {
        margin: 0.8rem 0 !important; 
    }
    
}

@media (max-width: 480px) {
    .head-logo img {
        width: 110px !important;
    }

    .reviews-images img {
        max-width: 200px !important;
    }

    .sponsor-section .sponsor-logos img {
        width: 180px !important;
    }

    .sewing-img img {
        max-width: 300px !important;
    }

    .contactus iframe,
    .supportus iframe {
        height: 160px !important;
    }
}
