 /*
Theme Name: frutieverdura
Template: oceanwp
Version: 1.0
=========================================================
   früTI&verdüra — HOMEPAGE
   CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap');


/* =========================
   RESET
========================= */

.fv-header, .fv-header *,
.fv-hero, .fv-hero *,
.fv-intro, .fv-intro *,
.fv-products, .fv-products *,
.fv-quality, .fv-quality *,
.fv-contact, .fv-contact *,
.fv-footer, .fv-footer * {
    box-sizing: border-box;
}

.fv-header a, .fv-hero a, .fv-intro a,
.fv-products a, .fv-quality a, .fv-contact a, .fv-footer a {
    text-decoration: none;
}

.fv-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.fv-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
    color: #fff;
}

.fv-header-inner {
    width: min(1180px, 90%);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.fv-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 3px 5px;
    border-radius: 8px;
}

.fv-logo img {
    height: 120px;
    width: auto;
    display: block;
}

.fv-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.fv-nav a {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 500;
    transition: .25s ease;
}

.fv-nav a:hover {
    color: #c9e4b6;
}

.fv-header-button {
    padding: 11px 19px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 100px;
    color: #fff !important;
    font-size: 13px;
    transition: .25s ease;
}

.fv-header-button:hover {
    background: #fff;
    color: #173b29 !important;
}

.fv-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.fv-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}


/* =========================
   HERO
========================= */

.fv-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background-image: url("https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=2200&q=90");
    background-size: cover;
    background-position: center;
}

.fv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,35,23,.91) 0%, rgba(10,35,23,.72) 45%, rgba(10,35,23,.15) 100%);
}

.fv-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    color: #fff;
}

.fv-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.7px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    margin-bottom: 25px;
}

.fv-hero h1 {
    max-width: 850px;
    margin: 0 0 27px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -4px;
}

.fv-hero h1 em {
    color: #c4ddaf;
    font-style: italic;
}

.fv-hero p {
    max-width: 540px;
    margin-bottom: 35px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}

.fv-hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.fv-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
}

.fv-button span {
    font-size: 18px;
}

.fv-button-primary {
    background: #d8eacb;
    color: #153825 !important;
}

.fv-button-primary:hover {
    transform: translateY(-3px);
    background: #fff;
}

.fv-button-light {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff !important;
}

.fv-button-light:hover {
    background: rgba(255,255,255,.12);
}

.fv-scroll {
    position: absolute;
    bottom: 30px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.6);
    font-size: 9px;
    letter-spacing: 2px;
}

.fv-scroll div {
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.45);
}


/* =========================
   INTRO
========================= */

.fv-intro {
    padding: 125px 0;
    background: #f8f5ed;
}

.fv-intro-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.fv-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #71836d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.fv-section-label span {
    color: #b2c6a7;
}

.fv-section-label.light {
    color: rgba(255,255,255,.65);
}

.fv-intro-content h2,
.fv-products-heading h2,
.fv-quality h2,
.fv-contact h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.fv-intro-content h2 {
    margin: 0 0 28px;
    color: #173d29;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.fv-intro-content h2 span {
    color: #75946a;
    font-style: italic;
}

.fv-intro-content p {
    max-width: 590px;
    margin-bottom: 18px;
    color: #68716a;
    font-size: 16px;
    line-height: 1.8;
}

.fv-text-link {
    display: inline-flex;
    gap: 15px;
    margin-top: 18px;
    color: #173d29 !important;
    font-size: 13px;
    font-weight: 700;
}

.fv-text-link span {
    transition: .2s ease;
}

.fv-text-link:hover span {
    transform: translateX(5px);
}


/* =========================
   PRODUCTS
========================= */

.fv-products {
    padding: 120px 0;
    background: #eaf0e6;
}

.fv-products-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 55px;
}

.fv-products-heading h2 {
    margin: 18px 0 0;
    color: #173d29;
    font-size: clamp(44px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -2px;
}

.fv-products-heading h2 em {
    color: #77946b;
    font-style: italic;
}

.fv-products-heading > p {
    max-width: 390px;
    color: #68746b;
    font-size: 15px;
    line-height: 1.7;
}

.fv-product-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
}

.fv-product-card {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    transition: .35s ease;
}

.fv-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20,50,30,.1);
}

.fv-product-large {
    grid-row: span 2;
}

.fv-product-image {
    height: 260px;
    overflow: hidden;
}

.fv-product-large .fv-product-image {
    height: 430px;
}

.fv-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.fv-product-card:hover .fv-product-image img {
    transform: scale(1.06);
}

.fv-product-content {
    padding: 24px 26px;
}

.fv-product-content h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    color: #173d29;
    font-size: 22px;
}

.fv-product-content p {
    margin: 0;
    color: #68746b;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   QUALITY
========================= */

.fv-quality {
    padding: 120px 0;
    background: #12281c !important;
    color: #ffffff !important;
}

.fv-quality * {
    color: inherit;
}

.fv-quality-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.fv-quality .fv-section-label {
    color: #a9d18e !important;
}

.fv-quality .fv-section-label span {
    color: #a9d18e !important;
}

.fv-quality h2 {
    margin: 18px 0 20px;
    color: #ffffff !important;
    font-size: clamp(38px, 4.5vw, 56px);
    letter-spacing: -1.5px;
}

.fv-quality-text {
    color: #d7e6cd !important;
    font-size: 15px;
    line-height: 1.7;
    max-width: 380px;
}

.fv-quality-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fv-quality-item {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.fv-quality-item span {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #d9f0b0 !important;
}

.fv-quality-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #ffffff !important;
}

.fv-quality-item p {
    margin: 0;
    color: #cfe0c5 !important;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   CONTACT
========================= */

.fv-contact {
    padding: 120px 0;
    background: #f8f5ed;
}

.fv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fv-contact h2 {
    margin: 18px 0 20px;
    color: #173d29;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -2px;
}

.fv-contact-text {
    color: #68716a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.fv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fv-contact-info strong {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #75946a;
    margin-bottom: 4px;
}

.fv-contact-info p,
.fv-contact-info a {
    margin: 0;
    color: #173d29;
    font-size: 15px;
}

.fv-contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(20,50,30,.08);
}

.fv-form-row {
    margin-bottom: 20px;
}

.fv-form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #71836d;
}

.fv-form-row input,
.fv-form-row textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #dde4d7;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #173d29;
    background: #f8f5ed;
    transition: .25s ease;
}

.fv-form-row input:focus,
.fv-form-row textarea:focus {
    outline: none;
    border-color: #b8d79e;
    background: #fff;
}

.fv-form button {
    border: 0;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.fv-form-success {
    margin-top: 16px;
    color: #4a7c3f;
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.fv-footer {
    background: #0e2318;
    color: rgba(255,255,255,.55);
    padding: 45px 0;
    text-align: center;
    font-size: 13px;
}

.fv-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.fv-footer-logo {
    height: 70px;
    width: auto;
    background: #fff;
    padding: 5px 8px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* =========================
   ANIMAZIONI
========================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .fv-nav { display: none; }
    .fv-menu-toggle { display: block; }

    .fv-intro-grid,
    .fv-quality-grid,
    .fv-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fv-product-grid {
        grid-template-columns: 1fr;
    }

    .fv-product-large {
        grid-row: auto;
    }

    .fv-products-heading {
        flex-direction: column;
        align-items: start;
    }

@media (max-width: 900px) {
    .fv-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: #173d29;
        padding: 10px 0;
    }

    .fv-nav.is-open {
        display: flex;
    }

    .fv-nav a {
        padding: 14px 24px;
    }

    .fv-header-button {
        display: none;
    }

    .fv-menu-toggle {
        display: block;
    }
}