/* General Styles */
body {
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #f6f6f6 0%, #e8f0f5 100%); /* Creamy white to soft blue gradient */
    color: #1a3c34; /* Deep teal for text, grounding and trustworthy */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #2a6e78 0%, #47a8b3 100%); /* Deep teal to emerald green */
    box-shadow: 0 4px 20px rgba(42, 110, 120, 0.2);
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* Space between text and logo */
}

.logo img {
    max-width: 200px;
    margin: 1rem 0; /* Adjusted to avoid extra vertical space */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff5e6; /* Warm ivory for contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: 0.03rem;
    position: relative;
    transition: color 0.3s ease-in-out;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f4c2c2; /* Soft pink underline for warmth */
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #f4c2c2; /* Soft pink for inviting hover */
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(120deg, #47a8b3 0%, #f7cac9 100%); /* Emerald green to soft pink */
    text-align: center;
    color: #fff;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0.3;
}

.hero .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 800;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    color: #fff5e6; /* Warm ivory for elegance */
    text-shadow: 3px 3px 10px rgba(71, 168, 179, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.6em;
    margin: 0 auto;
    max-width: 700px;
    color: #fff5e6;
    text-shadow: 1px 1px 6px rgba(71, 168, 179, 0.4);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Products Section Styles */
.products {
    background: #f6f6f6; /* Creamy white for purity */
    padding: 5rem 0;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #2a6e78; /* Deep teal for trust */
    margin-bottom: 3rem;
    letter-spacing: 0.05rem;
    text-align: center;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4a017; /* Warm gold for aspiration */
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.product {
    background: linear-gradient(135deg, #ffffff 60%, #e8f0f5 100%); /* White to soft blue */
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(71, 168, 179, 0.15);
    width: 370px;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 14px 40px rgba(71, 168, 179, 0.25);
}

.product-slider {
    width: 100%;
    height: 340px;
    margin: 0 auto 1.5rem auto;
    border-radius: 14px;
    overflow: hidden;
    background: #e8f0f5; /* Soft blue */
    box-shadow: 0 4px 16px rgba(71, 168, 179, 0.1);
}

.product-slider img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
}

.product-slider img:hover {
    transform: scale(1.08);
}

.product h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #ee9c9b; /* Soft pink for warmth */
    margin: 0.75rem 0 0.5rem 0;
}

.product-description {
    font-size: 1.1em;
    color: #1a3c34; /* Deep teal for readability */
    margin: 0.75rem 0 1.25rem 0;
    min-height: 90px;
}

.price {
    font-size: 1.4em;
    color: #2a6e78; /* Deep teal for trust */
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.order-btn {
    background: linear-gradient(90deg, #f7cac9 0%, #d4a017 100%); /* Soft pink to warm gold */
    color: #1a3c34; /* Deep teal text for contrast */
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    box-shadow: 0 3px 12px rgba(247, 202, 201, 0.2);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.order-btn:hover {
    background: linear-gradient(90deg, #d4a017 0%, #f7cac9 100%); /* Reversed gradient */
    box-shadow: 0 6px 20px rgba(247, 202, 201, 0.3);
    transform: translateY(-2px);
}

/* Zoom Modal Styles */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 60, 52, 0.9); /* Deep teal overlay */
    justify-content: center;
    align-items: center;
}

.zoomed-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: zoomIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #fff5e6;
    font-size: 2.8em;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #f4c2c2; /* Soft pink hover */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff5e6;
    font-size: 2.8em;
    background: rgba(71, 168, 179, 0.7); /* Emerald green with opacity */
    padding: 0.75rem 1.25rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1100;
    user-select: none;
    transition: background 0.3s;
}

.slider-nav:hover {
    background: rgba(71, 168, 179, 0.9);
}

.slider-nav-prev {
    left: 3rem;
}

.slider-nav-next {
    right: 3rem;
}

/* Contact Section Styles */
#contact {
    background: linear-gradient(90deg, #2a6e78 0%, #47a8b3 100%); /* Deep teal to emerald green */
    color: #fff5e6;
    padding: 4rem 1.5rem;
    text-align: center;
}

#contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 1rem;
}

#contact p {
    font-size: 1.2em;
    margin: 0.75rem 0;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    .product {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 4rem 1rem;
    }
    .hero .brand-name {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.3em;
    }
    .products {
        padding: 2.5rem 0 1.5rem 0;
    }
    .product-slider,
    .product-slider img {
        height: 200px;
    }
    .product {
        padding: 1rem 0.5rem;
    }
    nav ul {
        gap: 1.5rem;
    }
    nav ul li a {
        font-size: 1em;
    }
    .logo {
        flex-wrap: wrap; /* Prevent overflow on small screens */
        gap: 0.5rem;
    }
    .logo img {
        max-width: 150px; /* Smaller logo for mobile */
    }
}