@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

html,
body {
    height: 100%;
    width: 100%;
}



header {
    /* background-color: rgb(19, 144, 125); */
    background-image: url(b.jpg
    );
    height: 30vh;
    width: 100%;
    padding: 5.5vw 4vw;
    text-align: center;
    color: white;
}

.upfront {
    color: rgba(13, 12, 13, 0.834);
    font-size: 2.5vw;
}


.finger {
    font-size: 3rem;
    animation: bounce 1.2s infinite;
    margin-bottom: 10px;
}



.chopta {
    font-weight: 500;
    padding-top: 1vw;
    text-align: center;

}

.main-content {
    padding: 2vw 8vw;

}

.abc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2vw;
}

button {
    /* background-color: rgb(87, 42, 224); */
    color: #fff;
    padding: 1vw 3vw;
    border-radius: 1vw;
    margin-bottom: 15px;
    font-weight: bolder;
    font-size: 1.2vw;
    cursor: pointer;
    animation: blink 1s infinite;
    transition: transform 0.8s;
    background-color: blueviolet;
}

/* button:hover {
      background-color: #0056b3;
    transform: scale(1.05);
} */

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


a {
    color: black;
}

h2 {
    color:grey;
    border-bottom: 3px solid rgb(46, 44, 46);
    display: inline-block;
}

 p {
    text-align: justify;}

img {
    height: 80vh;

    object-fit: cover;
    margin-top: 1vw;
    width: 100%;
    /* margin-left: -1vw; */
}

section {
    /* margin-bottom: 10px; */
    padding: 20px 0;

}

.watsapp {
    position: fixed;
    height: 4.3vw;
    width: 4.3vw;
    background-color: rgb(8, 189, 119);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    bottom: 3%;
    right: 2%;
}

.ri-whatsapp-fill {
    font-size: 2.5vw;
    color: white;
}

.best-time {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #344e41;

}

.season-container {
    width: 100%;
}

.season-card {
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 6vw;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}




/* responsive design  */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 6vw;
        margin-bottom: 2vw;
    }

    img {
        height: 45vh;
        width: 100%;
    }

    .upfront {
        font-size: 7vw;
    }

    .abc {
        flex-direction: column;
        gap: 12vw;
    }

    button {
        padding: 3vw 6vw;
        font-size: 4vw;
    }

    .finger {
        display: none;
    }

    .season-card {
        width: 100%;
        

    }
    .watsapp{
        height: 15vw;
        width: 15vw;
    }
    .ri-whatsapp-fill{
        font-size: 8vw;
    }
    p{
        text-align: justify;
    }
}