/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --seafoam: #F0F7F7;
    --cool-white: #F8FCFC;
    --soft-teal: #B8D8D8;
    --ocean-mist: #9CC5C5;
    --teal: #4A9B9B;
    --deep-navy: #2C4A5C;
    --medium-blue: #5A7D8F;
    --light-sky: #D0E4E8;
    --sage: #A8B5A0;
    --dark-sage: #7A8F6E;
    --silver: #A8B8C0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--cool-white);
    color: var(--deep-navy);
    line-height: 1.7;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== Navigation ===== */
nav {
    background-color: var(--seafoam);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(44, 74, 92, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: var(--medium-blue);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--teal);
}

nav a:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--seafoam) 50%, var(--light-sky) 100%);
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a9b9b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .logo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.hero .tagline {
    font-size: 1.15rem;
    color: var(--medium-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.05rem;
    color: var(--medium-blue);
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--teal);
    margin: 1.5rem auto;
    opacity: 0.6;
}

/* ===== Section Styles ===== */
section {
    padding: 4.5rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-blue);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* ===== About Section ===== */
.about {
    background-color: var(--cool-white);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-portrait {
    flex: 0 0 260px;
    height: 320px;
    border-radius: 180px 180px 20px 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 74, 92, 0.1);
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-portrait-img {
    flex: 0 0 260px;
    height: 320px;
    border-radius: 180px 180px 20px 20px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 8px 30px rgba(44, 74, 92, 0.1);
}

.about-text h3 {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 1rem;
    font-style: italic;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--medium-blue);
    font-size: 1rem;
}

.about-text .signature {
    font-style: italic;
    color: var(--deep-navy);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* ===== Products Section ===== */
.products {
    background-color: var(--seafoam);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--cool-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 74, 92, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(44, 74, 92, 0.12);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-card:nth-child(1) .product-image { background-image: url('../img/croissants.jpg'); }
.product-card:nth-child(2) .product-image { background-image: url('../img/chocolate_chip.jpg'); }
.product-card:nth-child(3) .product-image { background-image: url('../img/lemon_loaf.jpg'); }
.product-card:nth-child(4) .product-image { background-image: url('../img/galettes.jpg'); }
.product-card:nth-child(5) .product-image { background-image: url('../img/sourdough.jpg'); }
.product-card:nth-child(6) .product-image { background-image: url('../img/cupcake.jpg'); }

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.product-info .description {
    color: var(--medium-blue);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.product-info .price {
    color: var(--teal);
    font-size: 1.05rem;
    font-weight: bold;
}

/* ===== Process Section ===== */
.process {
    background-color: var(--cool-white);
}

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--seafoam);
    border-radius: 16px;
    max-width: 220px;
}

.step-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.step h3 {
    font-size: 1.05rem;
    color: var(--teal);
    margin-bottom: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.step p {
    color: var(--medium-blue);
    font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonials {
    background-color: var(--seafoam);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--cool-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(92, 61, 46, 0.06);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--soft-teal);
    position: absolute;
    top: 5px;
    left: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    color: var(--medium-blue);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.testimonial .author {
    color: var(--deep-navy);
    font-size: 0.88rem;
    font-style: normal;
    letter-spacing: 0.05em;
}

/* ===== CTA / Order Section ===== */
.cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--ocean-mist) 100%);
    text-align: center;
    padding: 5rem 2rem;
}

.cta h2 {
    font-size: 2rem;
    color: var(--cool-white);
    margin-bottom: 1rem;
    font-style: italic;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--cool-white);
    color: var(--teal);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Footer ===== */
footer {
    background-color: var(--deep-navy);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 2rem;
}

footer .footer-logo {
    font-size: 1.3rem;
    color: var(--soft-teal);
    font-style: italic;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

footer a {
    color: var(--light-sky);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--soft-teal);
}

.footer-links {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero {
        padding: 4rem 1.5rem 3.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-portrait,
    .about-portrait-img {
        flex: 0 0 200px;
        height: 250px;
        width: 200px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero .tagline {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }
}