/* ============================= */
/* ROOT VARIABLES */
/* ============================= */
:root {
    --primary-color: #FF4500;
    --accent-color: #D4AF37;
    --background-color: #FFFDF5;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --success: #2E7D32;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* RESET */
/* ============================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    margin: 0;
    padding: 0;
}

nav {
    margin: 0;
    padding: 0;
}

.nav-divider {
    margin: 0;
    padding: 0;
}

.nav-divider img {
    display: block;
    width: 100%;
    height: 50px;
    object-fit: cover;
}

.delivery-section {
    background: #f8f3ed;
    padding: 60px 20px;
    text-align: center;
}

.delivery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #e65c2c;
}

.delivery-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #555;
}

.delivery-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.feature i {
    font-size: 40px;
    color: #e65c2c;
    margin-bottom: 10px;
}

.testimonials-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f3ed;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: #e65c2c;
    font-weight: 500;
}

.about-section {
    padding: 70px 20px;
    background: #f8f3ed;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.about-image img {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #e65c2c;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e65c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #c94d22;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* prevents horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================= */
/* UTILITIES */
/* ============================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('images/background.jpeg'); /* Change to your hero image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ============================= */
/* CATEGORIES SECTION */
/* ============================= */
.categories-section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ============================= */
/* ANIMATION */
/* ============================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .category-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .left-watermark {
        width: 50px;
        opacity: 0.15;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-image-wrapper {
        width: 170px;
        height: 170px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
    
}