* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tinos', serif;

}

.navphoto {
    background-image: url(./Screenshot\ 2024-07-22\ 103219.png);
    background-size: 100%;
    height: 5vh;
}

.col {
    height: 21vh;
}

.col img {
    padding-top: 4%;
}




nav {
    height: 10vh;
    width: 100%;
    background-color: maroon;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    /* position: fixed; */
    z-index: 10;
    top: 0px;
    position: sticky;

}



/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    /* padding: 0 0.7vw; */
    justify-content: space-evenly;
    /* align-items: center; */
    text-transform: uppercase;
    padding-top: 1.3%;
    padding-left: 11%;
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    color: white;

}

.nav-links li a:hover {
    color: yellow;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: yellow;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/
.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;

}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
        color: white;
    }

    .nav-links {
        /* position: fixed; */
        background: maroon;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
        color: white;
    }

    .nav-links li {
        opacity: 0;
    }


    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* banner */
body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background-size: cover;
}

#banner {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#banner #banner-images {
    height: 100%;
    position: relative;
    object-fit: cover;
    z-index: -10;

    animation: banner-change 15s infinite ease-in-out;
    display: flex;
    flex-direction: row;
}

#banner #banner-images img {
    width: 100vw;
    object-fit: cover;
}

@keyframes banner-change {
    0% {
        right: -200vw;

    }

    20.5% {
        right: -200vw;

    }

    22.5% {
        right: -200vw;

    }

    23% {
        right: -100vw;

    }

    25% {
        right: -100vw;

    }

    45.5% {
        right: -100vw;

    }

    47.5% {
        right: -100vw;

    }

    48% {
        right: 0vw;

    }

    50% {
        right: 0vw;

    }

    70.5% {
        right: 0vw;

    }

    72.5% {
        right: 0vw;

    }

    73% {
        right: 100vw;

    }

    75% {
        right: 100vw;

    }

    95.5% {
        right: 100vw;

    }

    97.5% {
        right: 100vw;

    }

    98% {
        right: 200vw;

    }

    100% {
        right: 200vw;

    }
}

#banner h1 {
    /* position: absolute; */
    font-family: Fantasy;
    font-size: 40px;
    letter-spacing: 8px;
    color: black;
    text-shadow: 2px 2px 8px rgb(237, 225, 225);
    animation: color-cycle 5s infinite ease-in-out;
    color: black;
    text-transform: uppercase;
    margin-top: -14px;
    animation: upDown 3s infinite alternate;
    width: 40%;
    margin-left: 5%;
    margin-top: 25%;
}

#banner h2 {
    /* position: absolute; */
    font-family: Fantasy;
    font-size: 40px;
    letter-spacing: 8px;
    color: maroon;
    text-shadow: 2px 2px 8px rgb(232, 225, 225);
    animation: color-cycle 5s infinite ease-in-out;
    color: maroon;
    text-transform: uppercase;
    animation: upDown 3s infinite alternate;
    width: 40%;
    margin-left: 5%;
    margin-top: 35%;
}

#banner h3 {
    /* position: absolute; */
    font-family: Fantasy;
    font-size: 40px;
    letter-spacing: 8px;
    color: maroon;
    text-shadow: 2px 2px 8px rgb(232, 225, 225);
    animation: color-cycle 5s infinite ease-in-out;
    color: black;
    text-transform: uppercase;
    animation: upDown 3s infinite alternate;
    width: 40%;
    margin-left: 5%;
    margin-top: 45%;
}







@keyframes upDown {
    0% {
        top: 0;
    }

    100% {
        top: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

#banner h1,
#banner h2,
#banner h3 {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 10px;
}

#banner h1 {
    top: 20%;
}

#banner h2 {
    top: 40%;
}

#banner h3 {
    top: 60%;
}

/* banner */
.col1 {
    background-image: url(./banner-1-opening-offers.jpg);
    background-size: 100%;
    height: 27vh;
    background-repeat: no-repeat;
    margin-top: 0.1%;
}

/* text */
.text h3 {
    font-style: serif;
    padding-top: 5%;
    font-size: 22px;
    text-align: center;
}

/* caption */
.col2 {
    background-image: url(./Screenshot\ 2024-07-22\ 134932.png);
    background-size: 45%;
    height: 31vh;
    background-repeat: no-repeat;
    margin-top: 1%;
    margin-left: 35%;
}

.col3 {
    width: 80%;
    margin-top: 5%;
    margin-left: 13%;
}

/* menu animation */
.row4 {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    margin-left: 10%;
    margin-top: 2%;
    height: 60vh;
}

.col4 img {
    /* width: 70%; */
    animation: zoomInOut 5s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



.col6 img {

    animation: zoomInOut 5s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.col4 h2 {
    margin-top: 1%;
    font-size: 20px;
    font-weight: bold;

}

.col4 h3 {
    margin-left: 20%;
    margin-top: 12%;
    font-size: 20px;
    font-weight: bold;
}

.col4 p {
    width: 50%;

}

/* mithas */
.col6 h3 {
    margin-left: 20%;
    margin-top: 12%;
    font-size: 20px;
    font-weight: bold;
}

.col6 p {
    width: 50%;
    margin-left: 16%;

}

/* ban */
.col5 {
    background-image: url(./todayban.jpg);
    height: 90vh;
    background-size: 90%;
    background-repeat: no-repeat;
    margin-left: 12%;

}

/* coupon */
.row6 {
    display: grid;
    grid-template-columns: auto auto;
}

.coupon {
    border: 5px dotted #bbb;
    width: 80%;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 600px;
    background-color: lemonchiffon;
}

span.scissors {
    position: absolute;
    top: 49.3%;
    right: 20;
    font-size: 30px;

}



.container2 {
    padding: 2px 16px;

}

.container2 h2 {
    font-size: 45px;
    margin-left: 45%;
    margin-top: -37%;
}

.container2 p {
    font-size: 25px;
    margin-left: 45%;
    margin-top: 2%;
    color: green;
}

.container p {
    font-size: 18px;
    margin-left: 45%;
    margin-top: 5%;

}





/*  review*/
body {
    font-family: Roboto, Verdana, sans-serif;
    background-color: #999;

    line-height: 1.5;
}

main {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.container3 {
    width: 80vw;

}

.title {
    text-align: center;
    /* margin-top: 15%; */
}

h2 {
    font-size: 2rem;
    text-transform: capitalize;
    padding-top: 10%;
}

.underline {
    height: 0.25rem;
    width: 5rem;
    background-color: #ffbf00;
    margin: 0 auto;
}

.review {
    background-image: url(review.avif);
    padding: 1.5rem 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px;
    transition: all 0.3s linear;
    text-align: center;
    margin-top: 5%;
    height: 100vh;
}

.review:hover {
    box-shadow: 0 5px 35px;
}

.img-container {
    position: relative;
    width: 100px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    margin-top: 5%;

}

.person-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    margin-top: 15%;
}

.img-container:after {
    font-family: serif;
    font-size: 2rem;
    font-weight: bold;
    content: "\201D";
    position: absolute;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(25%);
    background: #ffbf00;
    color: #333;
}

.img-container:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ffbf00;
    position: absolute;
    top: -0.25rem;
    right: -0.5rem;
    border-radius: 50%;
}

.author {
    margin-bottom: 0.25rem;
    text-transform: capitalize;
    color: black;
    letter-spacing: 0.25rem;
    font-weight: bold;
}

.job {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: maroon;
    font-weight: bold;
}

.info {
    margin-bottom: 0.75rem;
    color: black;
    font-weight: bold;
    font-style: 30px;
    width: 35%;
    margin-left: 32%;
}

.prev-btn,
.next-btn {
    fill: #666;
    width: 1.25rem;
    background: transparent;
    border-color: transparent;
    margin: 0 0.5rem;
    transition: all 0.3s linear;
    cursor: pointer;
}

.prev-btn:hover,
.next-btn:hover {
    fill: #ffbf00;
}

.random-btn {
    margin-top: 0.5rem;
    background: #666;
    color: #222;
    padding: 0.25rem 0.5rem;
    text-transform: capitalize;
    font-weight: bold;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
}

.random-btn:hover {
    color: #ffbf00;
}

/* again ban */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    /* Adjust the percentage for different number of columns */
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    margin-top: 5%;
    /* transition: transform 0.3s ease; */
}
/* footer */
.footer {
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px 0;
}
.contact i{
    color: maroon;
}
.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    border-top: 1px solid black;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    /* padding: 10px 0; */
    background-color: maroon;
    height: 8vh;
}
.footer-bottom p{
    color: white;
   padding-top: 1%;
}
.contact {
    margin-bottom: 20px;
}
