* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: #fffbf7;
}

.topbar {
    text-align: center;
    padding: 8px;
    background: #f5eee8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: #fffbf7;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
}


/* SLIDER */

body {
    margin: 0;
    font-family: Arial;
    background: #fffbf7;
}


/* SLIDER */

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slides img {
    width: 100%;
    min-width: 100%;
    height: 80vh;
    object-fit: cover;
}


/* Buttons */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* Mobile */

@media(max-width:768px) {
    .slides img {
        height: 50vh;
    }
}


/* SECTION */

.section {
    padding: 70px 20px;
    text-align: center;
}


/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}


/* PRODUCTS */

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    margin: 10px 0;
}

.desc {
    font-size: 14px;
    color: gray;
}


/* RESPONSIVE */

@media(max-width:768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .slides img {
        height: 50vh;
    }
}


/* SECTIONS */

.section {
    padding: 70px 20px;
    text-align: center;
}

.grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card img,
.product img {
    width: 100%;
    border-radius: 10px;
}

.facility,
.review {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.about {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}


/* RESPONSIVE */

@media(max-width:768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .slides img {
        height: 50vh;
    }
}