/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #fefcf8;
    --muted-pink: #f4a6a6;
    --baby-blue: #a6c8f4;
    --earthy-orange: #f4c2a6;
    --soft-purple: #c2a6f4;
    --gray-600: #4a5565;
    --gray-700: #364153;
    --gray-800: #1e2939;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--cream);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    margin-top: 5px;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--muted-pink);
}

.cta-btn {
    display: none;
    padding: 0.5rem 1rem;
    background: var(--muted-pink);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: var(--baby-blue);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--gray-600);
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: #f9fafb;
    color: var(--muted-pink);
}

/* Banner */
.banner {
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream), white, rgba(166, 200, 244, 0.1));
    padding: 4rem 1rem 5rem;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.image-wrapper {
    background: linear-gradient(135deg, rgba(244, 166, 166, 0.2), rgba(166, 200, 244, 0.2));
    border-radius: 1.5rem;
    padding: 1rem;
}

.image-inner {
    background: white;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}



/* Features */
.features {
    padding: 4rem 1rem;
    background: white;
}

.features-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.features .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.features .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
}

.feature {
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.feature p {
    line-height: 1.5;
}

/* Products */
.products {
    padding: 4rem 1rem;
    background: var(--cream);
}

.products-container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.section-header p {
    line-height: 1.625;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.product-image {
    background: linear-gradient(135deg, rgba(244, 166, 166, 0.2), rgba(166, 200, 244, 0.2));
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-card h3 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-btn {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta {
    padding: 4rem 1rem;
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
}

.cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: white;
    color: var(--muted-pink);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-white:hover {
    background: #f9fafb;
}

/* Footer */
footer {
    background: white;
    border-top: 1px solid #f3f4f6;
    padding: 3rem 1rem;
}

.footer-brand img {
    display: block;
    width: 120px;
    height: 120px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 5rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 0;
}

.footer-brand p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-map h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    height: 16rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid #f3f4f6;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-600);
}

.image-inner img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .cta-btn {
        display: inline-flex;
    }

    .hamburger {
        display: none;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-container {
        grid-template-columns: 1fr 1.2fr;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .features .section-header h2 {
        font-size: 1.875rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .cta h2 {
        font-size: 1.875rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        text-align: left;
    }

    .footer-brand .logo {
        justify-content: flex-start;
    }

    .footer-location {
        justify-content: flex-start;
    }

    .footer-map h3 {
        text-align: left;
    }

    .map-container {
        height: 20rem;
    }

    .image-inner img {
   
    height: auto;
    border-radius: 0.75rem;
    min-height: 400px;
    min-width: 400px;
    object-fit: cover;
    display: block;
}

    
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .image-inner img {
   
    height: auto;
    border-radius: 0.75rem;
    height: 400px;
    width: 400px;
    object-fit: cover;
    display: block;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 10rem;
}
    
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(244, 166, 166, 0.1), white, rgba(166, 200, 244, 0.1));
    padding: 4rem 1rem;
    text-align: center;
}

.about-hero-container {
    max-width: 56rem;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.about-story {
    padding: 4rem 1rem;
    background: white;
}

.about-story-container {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.story-text {
    text-align: center;
}

.story-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-content p {
    color: var(--gray-600);
    line-height: 1.625;
}

.story-image {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.about-delivery {
    padding: 4rem 1rem;
    background: white;
}

.about-delivery-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.about-delivery h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.delivery-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.delivery-cta {
    background: linear-gradient(to right, var(--muted-pink), var(--baby-blue));
    color: white;
    border-radius: 1rem;
    padding: 2rem;
}

.delivery-cta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.delivery-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Responsive for About Page */
@media (min-width: 768px) {
    .about-hero h1 {
        font-size: 2.25rem;
    }

    .story-text {
        text-align: left;
    }

    .story-text h2 {
        font-size: 1.875rem;
    }

    .about-story-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .about-delivery h2 {
        font-size: 1.875rem;
    }

    .delivery-cta h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .about-story-container {
        gap: 3rem;
    }
}