@import url('https://fonts.googleapis.com/css2?family=Englebert&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;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
}

a {
    color: #fff;
}

ul {
    list-style: none;
}

header {
    height: 100vh;
    width: 100%;
    background-image: url(./assets/images/banner.png);
    background-size: cover;
    background-position: center;
}

nav {
    background: transparent;
}

.text {
    font-family: 'Englebert', cursive;
    font-size: 40px;
    font-family: 600;
}

.menu-toggle {
    color: #fff;
    font-size: 32px;
}

.nav-link {
    color: #fff;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #193c66;
    border-radius: 4px;
}

nav.black {
    background: #0b2341;
    color: #fff;
    transition: all 0.3s ease;
}

.video-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 50vh;
}

.video-card .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 210px;
    padding: 20px 0;
    background: #ffffff97;
    border-radius: 5px;
}

.video-card .item img {
    height: 130px;
}

.video-card .item p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
}

.video-card .item button {
    background: #21518b;
    border: none;
    padding: 5px 8px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
}

.video-card .item button:hover {
    background: #193c66;
}

section {
    padding: 60px 5%;
}

.section-title h2 {
    color: #21518b; 
    font-family: 'Englebert', sans-serif;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: .15rem;
    padding-top: 50px;
    margin-bottom: 30px;
}

.section-text {
    font-size: 17px;
    margin-bottom: 50px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.product-image img {
    width: 110px;
}

.product-info h1 {
    font-family: 'Englebert', sans-serif;
    font-size: 32px;
}

.music .album-link a {
    color: #21518b;
}

.music .album-link a:hover {
    text-decoration: none;
    color: red;
}

.tips, .contact {
background: #eee;
}

.tips .g-0 {
    border-radius: 5px;
    padding: 20px;
    border: 2px solid transparent;
}

.tips .g-0:hover {
    border: 2px solid #21518b;
}

.tips .card-title {
    margin-bottom: 20px;
}

.tips img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.tips a {
    color: #21518b;
}

.tips a:hover {
    text-decoration: none;
    color: red;
}

.review .review-list {
    width: 100%;
    padding: 20px;
    background: #eee;
    border-bottom: 14px;
    margin-right: 40px;
}

.review .review-list .item {
    margin-bottom: 20px;
}

.review .review-list .item p{
    margin-bottom: 3px;
}

.review .review-list .item h6 {
    color: #0b2341;
    font-weight: 600;
}

.image-gallery {
    background-color: #eee;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;

}

.image-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: bottom;
    padding: 10px;
}

.contact-card {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
}

.contact-card .left #queries {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-card .left .info p {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-card .left .info i {
    font-size: 18px;
}

.contact-card .right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-card .right img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.contact-card .right p {
    font-weight: 600;
    margin-top: 10px;
}

  footer {
    background: #193c66;
    color: #fff;
    text-align: center;
    padding: 10px;
  }

  footer p {
    margin: auto 0;
  }

  @media screen and (max-width: 1200px) {
    header {
        height: 80vh;
    }

    .video-card {
        padding-top: 45vh;
    }
  }

  @media screen and (max-width: 992px) {
    nav {
        background: #0b2341;
    }
  }

  @media screen and (max-width: 768px) {
    header {
        height: 50vh;
    }

    .video-card {
        padding-top: 20vh;
        gap: 10px;
    }

    .video-card .item {
        width: 160px;
    }

    .video-card .item img {
        height: 100px;
    }

    .video-card .item p {
        font-size: 12px;
    }

    .contact-card {
        flex-wrap: wrap;
    }

    .contact-card .left {
        margin-bottom: 50px;
    }

    .contact-card .left #queries {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }
  }

  
@media screen and (max-width: 415px) {
    section {
        padding: 0 30px 7% 7%;
    }

    .text {
        font-size: 32px;
    }

    .section-text{
        font-size: 14px;
    }

    .card-text {
        text-align: justify;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-title h2 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .video-card {
        padding-top: 30vh;
        gap: 7px;
        flex-wrap: wrap;
    }

    .video-card .item {
        padding: 10px 0;
        width: 22%;
    }

    .video-card .item img {
        height: 60px;
    }

    .video-card .item p {
        font-size: 6px;
        font-weight: 600    ;
    }

    .video-card .item button{
        font-size: 9px;
    }

    .music .album-link {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .review .review-list .item p {
        text-align: justify;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact-card {
        padding: 30px;
        flex-wrap: wrap;
    }

    .contact-card .left #queries {
        font-size: 14px;
        text-align: center;
    }
}
