@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #fefefe;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.logo-container {
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 100px auto;
}

.home-logo-image-cont {
    width: 50%;
}

.about-imformation>p {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
}

.home-logo-image {
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 10px auto;
}

.about-imformation {
    width: 50%;
}

.hero {
    background-image: url('/images/SmallMenu/CoffeeBg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero h1,
.hero {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 80px;
    color: #0B6623;
}

.section-desc {
    text-align: center;
    margin: 10px auto 40px;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 40px 80px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.book_btn{
    padding: 8px 20px;
    font-size: 16px;
    background-color: #0B6623;
    border: none;
    color: #f7f7f7;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #f7f7f7;
    font-size: 14px;
    color: #888;
}

/* === Product Slider Styles === */
.product-slider-section {
    padding: 60px 20px;
    background-color: #fffef9;
    text-align: center;
}

.slider-title {
    font-size: 2rem;
    color: #0B6623;
    margin-bottom: 30px;
}

.slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.slider-track {
    display: inline-flex;
    gap: 20px;
}

.slide {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide:hover {
    transform: scale(1.05);
}


/* Responsive Design */

@media (max-width: 768px) {
    .header {
        text-align: center;
    }

    .nav-links {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .product-card {
        width: 100%;
        max-width: 90%;
    }

    .product-grid {
        padding: 0 20px 60px;
    }

    .slide {
        width: 180px;
        height: 180px;
    }

    .logo-container {
        flex-direction: column;
        height: fit-content;
    }

    .home-logo-image-cont {
        width: 100%;
    }

    .about-imformation {
        width: 100%;
    }

    .swiper {
        height: 40vh;
    }
}


/* Contact CSS */


/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0B6623 30%, #48A860 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.home-link {
    font-size: 18px;
    color: #0B6623;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #fff;
}

.home-link:hover {
    color: #ececec;
    background: none;
    border: 1.5px solid #ececec;
}

.swiper {
    width: 100%;
    height: 80vh;
    margin: 100px 0px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}