/* ---------- Global ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #000000;
    background: #fff;
    text-align: justify;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn.green {
    background: #43a047;
}

.btn.yellow {
    background: #ffb300;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}


/* ---------- Header ---------- */

.header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    width: 70px;
    font-size: 30px;
    font-weight: 700;
    color: #ffb300;
}

.logo span {
    gap: 0;
    margin: 0;
    padding: 5px;
    color: #43a047;
}

.nav a {
    font-weight: 500;
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #ff8800;
    color: #fff;
}


/* ✅ Highlight active page */

.nav a.active {
    background-color: #ff8800;
    color: #fff;
}

.order-btn {
    background: #ffb300;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/*---------- Slider Section ---------- */

.slider {
    margin: 10px;
    position: relative;
    overflow: hidden;
    width: 98%;
    max-height: 500px;
}

.slides {
    position: relative;
}

.slide {
    display: none;
}

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


/* Hero text positioned on RIGHT */

.slider .hero-content {
    text-align: justify;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff;
    max-width: 500px;
    text-align: right;
    /* TEXT RIGHT */
}


/* Text styling with shadow */

.slider .hero-text h1,
.slider .hero-text h2,
.slider .hero-text p {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.897);
}

.slider .hero-text h1 {
    font-size: 50px;
    margin: 0;
    font-weight: 600;
}

.slider .hero-text h2 {
    font-size: 50px;
    margin: 0;
    font-weight: 600;
}

.slider .hero-text p {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.4;
}


/* Buttons bottom-right */

.slider .buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 30;
}

.slider .buttons .btn {
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}


/* Button colors */

.btn.green {
    background: #43a047;
    color: #fff;
}

.btn.yellow {
    background: #fbc02d;
    color: #222;
}


/* Responsive */

@media (max-width: 768px) {
    .slider .hero-content {
        right: 50%;
        transform: translate(50%, -50%);
        text-align: center;
        max-width: 90%;
    }
    .slider .hero-text h1 {
        font-size: 32px;
    }
    .slider .hero-text h2 {
        font-size: 40px;
    }
    .slider .hero-text p {
        font-size: 16px;
    }
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active,
.dot:hover {
    background-color: #43a047;
}


/* ---------- Event Highlights ---------- */

.events {
    padding: 60px 0;
    background: #fffef5;
    text-align: center;
    justify-content: center;
}

.events h2 span {
    color: #43a047;
}

.event-grid {
    margin-top: 15px;
    min-width: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* Image */

.event-card img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
}


/* Content */

.event-content h4 {
    color: #ff9800;
    margin-bottom: 10px;
}

.event-content p {
    color: #555;
    line-height: 1.6;
}


/* ---------- Products ---------- */

.products {
    padding: 60px 0;
    background: #fff7f0;
    text-align: center;
}

.products h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #222;
    font-weight: 700;
}


/* Grid with 5 equal columns */

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Product Card */

.product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 10px;
    width: 75%;
    max-width: 170px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: max-content/* set constant height */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 12px auto;
    display: block;
}

.product-card h4 {
    font-size: 12px;
    font-weight: lighter;
    color: #222;
    margin-bottom: 6px;
}

.price {
    color: #ff7b00;
    font-size: 15px;
    font-weight: 600;
}


/* Order Button */

.order-btn {
    display: inline-block;
    background: #ff7b00;
    color: #fff;
    padding: 8px 5px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #e56e00;
    transform: scale(1.05);
}


/* Responsive Layouts */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 25px;
    }
}


/* ---------- About ---------- */

.about {
    text-align: center;
    padding: 30px 0;
}

.about h2 {
    margin: 15px;
    font-size: 40px;
    font-weight: 500;
}

.read-btn {
    margin: 20px;
    background-color: #ff7b00;
    /* bright orange */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    /* for <a> links */
}

.read-btn:hover {
    background-color: #e66900;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}

.read-btn:active {
    transform: scale(0.98);
}


/* ---------- Locations ---------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.locations {
    text-align: center;
    background: #f1f8e9;
    padding: 60px 30px;
    font-family: 'Poppins', sans-serif;
}

.locations h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.locations p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.location-tags {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.location {
    background: #d8ebc0;
    /* soft green tone similar to background */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 25px 0;
    width: 250px;
    transition: all 0.3s ease;
    text-align: center;
}

.location:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.location h3 {
    padding: 0 20px;
    color: #43a047;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.location p {
    padding: 0 20px;
    color: #444;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.map-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.map-btn:hover {
    background-color: #e6a000;
}


/* Responsive design */

@media (max-width: 900px) {
    .location-tags {
        flex-wrap: wrap;
        gap: 20px;
    }
    .location {
        width: 90%;
        max-width: 350px;
    }
}


/* ---------- Customer Reviews ---------- */

.reviews-section {
    background: #f9f9f9;
    text-align: center;
    padding: 60px 20px;
}

.reviews-section h2 {
    font-size: 28px;
    color: #2e7d32;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.review-card {
    background: #efefef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.review-card p {
    font-size: 15px;
    color: #444;
    margin: 15px 0;
}

.review-card h4 {
    color: #2e7d32;
    margin-top: 10px;
    font-weight: 600;
}

.stars {
    color: #f7a800;
    /* gold */
    font-size: 22px;
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}


/* ---------------- FOOTER GLOBAL STYLE ---------------- */

.footer {
    background: linear-gradient(90deg, #071a3c, #380d0d);
    color: #fff;
    padding: 60px 8%;
    font-family: "Poppins", sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}


/* ---------------- COLUMN TITLES ---------------- */

.footer-col h3,
.footer-col h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col h3 span {
    color: #ffc800;
}


/* Animated underline */

.footer-col h3::after,
.footer-col h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #fff;
    margin-top: 6px;
    border-radius: 10px;
    animation: underlineSlide 2s infinite alternate;
}

@keyframes underlineSlide {
    from {
        width: 20px;
        opacity: 0.4;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}


/* ---------------- TEXT & LINKS ---------------- */

.footer-col p {
    line-height: 1.6;
    opacity: 0.85;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col a:hover {
    padding-left: 8px;
    opacity: 1;
}


/* ---------------- APP STORE BADGES ---------------- */

.app-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.app-links img {
    width: 120px;
    transition: 0.3s;
}

.app-links img:hover {
    transform: scale(1.05);
}


/* ---------------- SOCIAL ICONS ---------------- */

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-links img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
    transition: 0.3s;
}

.social-links img:hover {
    transform: translateY(-5px);
}


/* ---------------- FOOTER BOTTOM ---------------- */

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    opacity: 0.8;
}


/* ------- Medium Screens (Tablets) ------- */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer {
        padding: 50px 6%;
    }
    .footer-col h3,
    .footer-col h4 {
        font-size: 22px;
    }
}


/* ------- Mobile Screens ------- */

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    .footer-col h3::after,
    .footer-col h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col p {
        margin: 0 auto;
        max-width: 350px;
    }
    .social-links {
        justify-content: center;
    }
    .app-links {
        justify-content: center;
    }
    .footer {
        padding: 45px 5%;
    }
}


/* -------- Extra Small Screens ------- */

@media (max-width: 480px) {
    .footer-col h3,
    .footer-col h4 {
        font-size: 20px;
    }
    .footer-col p {
        font-size: 14px;
    }
    .footer-bottom {
        font-size: 12px;
    }
    .social-links img {
        width: 34px;
        height: 34px;
    }
    .app-links img {
        width: 110px;
    }
}


/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
    }
    .nav.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img {
        width: 90%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    .event-card img {
        width: 100%;
        height: auto;
    }
}
