/* =========================
   VARIABLES
========================= */

:root {

    --cream: #f8f2ea;
    --cream-dark: #eee3d6;

    --brown: #5b4035;
    --brown-dark: #392720;

    --pink: #c98f88;
    --pink-light: #e8c1ba;

    --white: #ffffff;
    --text: #4a3a34;
    --gray: #756963;

    --shadow: 0 15px 40px rgba(60, 40, 30, 0.10);

}


/* =========================
   RESET
========================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Poppins', sans-serif;

    background: var(--cream);

    color: var(--text);

    line-height: 1.7;

}


img {

    width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


/* =========================
   CONTAINER
========================= */

.container {

    width: min(1120px, 90%);

    margin: auto;

}


/* =========================
   HEADER
========================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,.05);

}


.nav {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-family: 'DM Serif Display', serif;

    font-size: 28px;

    color: var(--brown);

}


.logo span {

    color: var(--pink);

}


nav {

    display: flex;

    gap: 28px;

}


nav a {

    font-size: 14px;

    font-weight: 500;

    transition: .3s;

}


nav a:hover {

    color: var(--pink);

}


.menu-btn {

    display: none;

    background: none;

    border: none;

    font-size: 24px;

    color: var(--brown);

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 100vh;

    background-image:
        url("https://images.unsplash.com/photo-1551024601-bec78aea704b?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(45,30,25,.80),
            rgba(45,30,25,.35),
            rgba(45,30,25,.05)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(700px, 90%);

    margin-left: max(5%, calc((100% - 1120px)/2));

    color: white;

    padding-top: 75px;

}


.eyebrow,
.section-tag {

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 600;

    color: var(--pink);

    margin-bottom: 15px;

}


.hero .eyebrow {

    color: var(--pink-light);

}


.hero h1 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 400;

}


.hero h1 span {

    color: var(--pink-light);

}


.hero-text {

    max-width: 600px;

    margin: 25px 0 35px;

    font-size: 17px;

    color: #eee;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================
   BUTTONS
========================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid transparent;

    transition: .3s;

    cursor: pointer;

}


.btn-primary {

    background: var(--pink);

    color: white;

}


.btn-primary:hover {

    background: var(--brown);

    transform: translateY(-2px);

}


.btn-outline {

    border-color: white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--brown);

}


.full {

    width: 100%;

}


/* =========================
   SECTIONS
========================= */

.section {

    padding: 110px 0;

}


.section-heading {

    text-align: center;

    max-width: 650px;

    margin: 0 auto 55px;

}


.section-heading h2,
.about-content h2,
.order-content h2 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.15;

    font-weight: 400;

    color: var(--brown);

}


.section-heading h2 span,
.about-content h2 span,
.order-content h2 span,
.cta h2 span {

    color: var(--pink);

}


.section-heading > p:last-child {

    margin-top: 15px;

    color: var(--gray);

}


/* =========================
   ABOUT
========================= */

.about {

    background: white;

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.about-image {

    height: 600px;

    overflow: hidden;

}


.about-image img {

    height: 100%;

    object-fit: cover;

}


.about-content > p:not(.section-tag) {

    color: var(--gray);

    margin: 15px 0;

}


.features {

    margin-top: 35px;

    display: grid;

    gap: 20px;

}


.features div {

    display: grid;

    grid-template-columns: 40px 1fr;

    column-gap: 15px;

}


.features i {

    grid-row: span 2;

    font-size: 20px;

    color: var(--pink);

    margin-top: 5px;

}


.features strong {

    color: var(--brown);

}


.features span {

    font-size: 13px;

    color: var(--gray);

}


/* =========================
   PRODUCTS
========================= */

.catalog {

    background: var(--cream);

}


.products {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.product-card {

    background: white;

    box-shadow: var(--shadow);

    transition: .3s;

}


.product-card:hover {

    transform: translateY(-8px);

}


.product-image {

    height: 270px;

    position: relative;

    overflow: hidden;

}


.product-image img {

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.product-card:hover .product-image img {

    transform: scale(1.05);

}


.badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: var(--pink);

    color: white;

    font-size: 10px;

    padding: 6px 10px;

    letter-spacing: 1px;

}


.product-info {

    padding: 25px;

}


.product-info h3 {

    font-family: 'DM Serif Display', serif;

    font-size: 25px;

    color: var(--brown);

}


.product-info p {

    color: var(--gray);

    font-size: 13px;

    margin: 10px 0 20px;

}


.product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

}


.product-bottom strong {

    color: var(--brown);

}


.order-btn {

    border: none;

    background: var(--brown);

    color: white;

    padding: 9px 15px;

    cursor: pointer;

    transition: .3s;

}


.order-btn:hover {

    background: var(--pink);

}


/* =========================
   GALLERY
========================= */

.gallery {

    background: white;

}


.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

}


.gallery-grid img {

    height: 330px;

    object-fit: cover;

    transition: .4s;

}


.gallery-grid img:hover {

    transform: scale(1.02);

}


/* =========================
   ORDER
========================= */

.order {

    background: var(--cream-dark);

}


.order-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.order-content > p:not(.section-tag) {

    color: var(--gray);

    margin: 20px 0;

}


.order-info {

    margin-top: 35px;

    display: grid;

    gap: 20px;

}


.order-info > div {

    display: flex;

    gap: 15px;

}


.order-info i {

    color: var(--pink);

    font-size: 23px;

    width: 30px;

}


.order-info strong {

    display: block;

    color: var(--brown);

}


.order-info span {

    font-size: 13px;

    color: var(--gray);

}


.order-form {

    background: white;

    padding: 35px;

    box-shadow: var(--shadow);

}


.form-group {

    margin-bottom: 20px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.form-group label {

    display: block;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;

    color: var(--brown);

}


input,
select,
textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ddd;

    outline: none;

    background: white;

    color: var(--text);

}


input:focus,
select:focus,
textarea:focus {

    border-color: var(--pink);

}


textarea {

    resize: vertical;

}


/* =========================
   TESTIMONIALS
========================= */

.testimonials {

    background: white;

}


.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.testimonial {

    padding: 35px;

    background: var(--cream);

}


.stars {

    color: var(--pink);

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.testimonial p {

    font-size: 14px;

    color: var(--gray);

    margin-bottom: 20px;

}


.testimonial strong {

    color: var(--brown);

}


/* =========================
   CTA
========================= */

.cta {

    min-height: 500px;

    background-image:
        url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

    text-align: center;

}


.cta-overlay {

    position: absolute;

    inset: 0;

    background: rgba(45,30,25,.72);

}


.cta-content {

    position: relative;

    z-index: 2;

    color: white;

}


.cta h2 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(40px, 6vw, 65px);

    line-height: 1.1;

    font-weight: 400;

}


.cta p:not(.section-tag) {

    margin: 20px auto 30px;

    max-width: 550px;

    color: #eee;

}


/* =========================
   CONTACT
========================= */

.contact {

    background: var(--cream);

}


.contact-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.contact-card {

    background: white;

    padding: 40px;

    text-align: center;

    box-shadow: var(--shadow);

}


.contact-card i {

    font-size: 30px;

    color: var(--pink);

    margin-bottom: 15px;

}


.contact-card h3 {

    font-family: 'DM Serif Display', serif;

    font-size: 25px;

    color: var(--brown);

}


.contact-card p {

    color: var(--gray);

    font-size: 14px;

}


/* =========================
   FOOTER
========================= */

footer {

    background: var(--brown-dark);

    color: white;

}


.footer-content {

    padding: 45px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}


footer .logo {

    color: white;

}


.footer-content p {

    color: #d8cbc5;

    font-size: 13px;

    margin-top: 8px;

}


.social {

    display: flex;

    gap: 15px;

}


.social a {

    width: 42px;

    height: 42px;

    border: 1px solid #79635b;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}


.social a:hover {

    background: var(--pink);

    border-color: var(--pink);

}


.footer-bottom {

    border-top: 1px solid #5b4840;

    text-align: center;

    padding: 20px;

    color: #bcaea8;

    font-size: 12px;

}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    z-index: 999;

    transition: .3s;

}


.whatsapp-float:hover {

    transform: scale(1.1);

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    nav {

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        background: white;

        display: none;

        flex-direction: column;

        padding: 25px;

        box-shadow: var(--shadow);

    }


    nav.active {

        display: flex;

    }


    .menu-btn {

        display: block;

    }


    .products {

        grid-template-columns: repeat(2, 1fr);

    }


    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .about-grid,
    .order-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }

}


@media(max-width: 600px) {

    .section {

        padding: 75px 0;

    }


    .hero-content {

        margin-left: 5%;

    }


    .hero h1 {

        font-size: 48px;

    }


    .hero-text {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .products {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

    }


    .gallery-grid img {

        height: 220px;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .order-form {

        padding: 25px;

    }


    .footer-content {

        flex-direction: column;

        text-align: center;

    }

}