/* styles.css */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 4vw;
    background-color: #fff;
    width: 80%;
}

header img {
    width: 16vw;
}

header nav ul {
    display: flex;
    gap: 2vw;
    font-size: 1.2vw;
    color: #EF5158;
}

header nav ul li {
    font-weight: bold;
}

header nav ul li:hover {
    filter: brightness(1.5);
}

header .menu-toggle-icon {
    display: none;
}


/* .Banner styling */
.Banner-img {
    background: url(/assets/aawas.png) no-repeat center/cover;
    height: 60vh;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* Gallery Section */
.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery h2 {
    padding: 2vw;
    font-size: 2.2vw;
    color: #CC0000;
}

.gallery-items {
    --s: 10vw;
    --g: 0.5vw;
    --f: 1.5;

    display: grid;
    gap: var(--g);
    width: calc(4.5*var(--s) + 2*var(--g));
    aspect-ratio: 1;
    grid-template-columns: repeat(3, auto);
}
.gallery-items > img {
    width: 0;
    height: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: .35s linear;
  }
  .gallery-items img:hover{
    width:  calc(var(--s)*var(--f));
    height: calc(var(--s)*var(--f));
  }

/* Profile Detail Section */
.profile-detail {
    width: 100%;
    background-color: #eaf2f8;
    padding: 2vw;
    margin: 2vw;
}

/* Facilities Section */
.facilities {
    width: 100%;
    background-color: #d4efdf;
    padding: 2vw;
    margin: 2vw;
}

/* Pay Coupon Section */
.pay-coupon {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.pay-coupon button {
    background-color: #CC0000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.pay-coupon button:hover {
    filter: brightness(1.2);
}





@media (max-width: 768px) {
    header {
        position: relative;
        width: 100%;
        padding: 4vw;
        margin: 0;
    }

    header img {
        width: 70%;
    }

    header nav {
        display: none;
    }

    header .menu-toggle-icon {
        font-size: 6vw;
        display: block;
    }


    nav {
        display: none;
        height: 0;
        overflow: hidden;
        background-color: black;
        transition: height 0.3s ease;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
    }

    nav ul li {
        font-size: 4vw;
        color: white;
        padding: 4vw;
        border-bottom: 1px solid white;

    }



    .Banner-img{
        width: 95%;
    }

    .gallery{
        width: 100%;
    }
    .gallery h2{
        padding: 4vw;
        font-size: 6vw;
    }
    .gallery-items{
        width: 100%;
        grid-template-rows: 1fr;
    }
    .gallery-items img{
        width: 100%;
        height: auto;
    }

    
}

@media (max-width: 480px) {
    header {
        position: relative;
        width: 100%;
        padding: 4vw;
        margin: 0;
    }

    header img {
        width: 70%;
    }

    header nav {
        display: none;
    }

    header .menu-toggle-icon {
        font-size: 6vw;
        display: block;
    }


    nav {
        display: none;
        height: 0;
        overflow: hidden;
        background-color: black;
        transition: height 0.3s ease;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
    }

    nav ul li {
        font-size: 4vw;
        color: white;
        padding: 4vw;
        border-bottom: 1px solid white;

    }



    .Banner-img{
        width: 95%;
    }

    .gallery{
        width: 100%;
    }
    .gallery h2{
        padding: 4vw;
        font-size: 6vw;
    }
    .gallery-items{
        width: 100%;
        grid-template-rows: 1fr;
    }
    .gallery-items img{
        width: 100%;
        height: auto;
    }
}