/*
 * HOMEPAGE VETRINA – animalls.test
 * Stili per page-vetrina-home.php
 * @version 1.0.0  2026-02-25
 */

/* ---------------------------------------------------------------
   Variabili colori brand (coerenti con Porto)
   --------------------------------------------------------------- */
:root {
    --anim-orange:  #e0632d;
    --anim-dark:    #222529;
    --anim-light:   #f8f6f3;
    --anim-mid:     #f0ece6;
    --anim-border:  #e3ddd7;
    --anim-text:    #555;
    --anim-radius:  8px;
    --anim-shadow:  0 4px 24px rgba(0,0,0,.10);
}

/* ---------------------------------------------------------------
   FULL-WIDTH BREAKOUT
   Porto avvolge il contenuto in .container (max-width: 1440px)
   + .main-content.col-lg-12 (padding: 20px 10px 40px).
   Le sezioni full-bleed (hero, alternate, dark, contact-bar) usano
   la tecnica negative-margin per uscire da questi constraint.
   --------------------------------------------------------------- */

/* Evita scrollbar orizzontale causata dal breakout */
body.page-template-page-vetrina-home {
    overflow-x: hidden;
}

/* Rimuovi padding Porto sull'area contenuto — l'hero deve toccare l'header */
body.page-template-page-vetrina-home .main-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
body.page-template-page-vetrina-home #content > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
body.page-template-page-vetrina-home .main-content-wrap {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Sezioni full-bleed — escono dal .container Porto e occupano 100vw */
.vh-hero,
.vh-section--alt,
.vh-section--dark,
.vh-contact-bar,
.vh-grooming {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ---------------------------------------------------------------
   Utility sezione
   --------------------------------------------------------------- */
.vh-section {
    padding: 72px 0;
}
.vh-section--alt {
    background: var(--anim-light);
}
.vh-section--dark {
    background: var(--anim-dark);
    color: #fff;
}
.vh-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--anim-orange);
    margin-bottom: 10px;
}
.vh-section__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--anim-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}
.vh-section--dark .vh-section__title {
    color: #fff;
}
.vh-section__subtitle {
    font-size: 17px;
    color: var(--anim-text);
    max-width: 640px;
    margin: 0 0 32px;
    line-height: 1.7;
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.vh-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f1a 55%, #3d2415 100%);
    overflow: hidden;
    padding: 80px 0;
}
.vh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(224,99,45,.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(224,99,45,.12) 0%, transparent 60%);
    pointer-events: none;
}
.vh-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(224,99,45,.08);
    pointer-events: none;
}
.vh-hero__inner {
    position: relative;
    z-index: 2;
}
.vh-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--anim-orange);
    border: 1px solid var(--anim-orange);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 24px;
}
.vh-hero__title {
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 22px;
    line-height: 1.12;
}
.vh-hero__title span {
    color: var(--anim-orange);
}
.vh-hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    line-height: 1.7;
    margin: 0 0 38px;
}
.vh-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------------------------------------------------------------
   Pulsanti
   --------------------------------------------------------------- */
.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    padding: 14px 28px;
    text-decoration: none;
    transition: all .22s ease;
    letter-spacing: .3px;
    cursor: pointer;
    border: 2px solid transparent;
}
.vh-btn--primary {
    background: var(--anim-orange);
    color: #fff;
    border-color: var(--anim-orange);
}
.vh-btn--primary:hover {
    background: #c95520;
    border-color: #c95520;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224,99,45,.35);
}
.vh-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.vh-btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}
.vh-btn--outline-dark {
    background: transparent;
    color: var(--anim-dark);
    border-color: var(--anim-dark);
}
.vh-btn--outline-dark:hover {
    background: var(--anim-dark);
    color: #fff;
}

/* ---------------------------------------------------------------
   CHI SIAMO – 3 feature box
   --------------------------------------------------------------- */
.vh-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin: 40px 0 44px;
}
.vh-feature {
    background: #fff;
    border-radius: var(--anim-radius);
    padding: 32px 28px;
    box-shadow: var(--anim-shadow);
    border-top: 3px solid var(--anim-orange);
    transition: transform .22s ease;
}
.vh-feature:hover {
    transform: translateY(-5px);
}
.vh-feature__icon {
    width: 52px;
    height: 52px;
    background: rgba(224,99,45,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--anim-orange);
}
.vh-feature__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--anim-dark);
    margin: 0 0 8px;
}
.vh-feature__text {
    font-size: 14px;
    color: var(--anim-text);
    line-height: 1.65;
    margin: 0;
}

/* ---------------------------------------------------------------
   SEDI – due colonne
   --------------------------------------------------------------- */
.vh-sedi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 767px) {
    .vh-sedi { grid-template-columns: 1fr; }
}
.vh-sede {
    background: #fff;
    border-radius: var(--anim-radius);
    overflow: hidden;
    box-shadow: var(--anim-shadow);
}
.vh-sede__map {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
}
.vh-sede__body {
    padding: 24px 28px;
}
.vh-sede__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--anim-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vh-sede__name::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--anim-orange);
    border-radius: 2px;
    flex-shrink: 0;
}
.vh-sede__info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--anim-text);
}
.vh-sede__info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--anim-border);
}
.vh-sede__info li:last-child { border-bottom: none; }
.vh-sede__info i {
    color: var(--anim-orange);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.vh-sede__info a {
    color: var(--anim-orange);
    text-decoration: none;
}
.vh-sede__info a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------
   SERVIZI – 6 card grid
   --------------------------------------------------------------- */
.vh-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
@media (max-width: 991px) {
    .vh-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .vh-services { grid-template-columns: 1fr; }
}
.vh-service-card {
    background: #fff;
    border-radius: var(--anim-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--anim-shadow);
    transition: all .22s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border-bottom: 3px solid transparent;
}
.vh-service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--anim-orange);
    color: inherit;
    text-decoration: none;
}
.vh-service-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(224,99,45,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--anim-orange);
    transition: background .22s;
}
.vh-service-card:hover .vh-service-card__icon {
    background: var(--anim-orange);
    color: #fff;
}
.vh-service-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--anim-dark);
    margin: 0 0 10px;
}
.vh-service-card__text {
    font-size: 13px;
    color: var(--anim-text);
    line-height: 1.65;
    margin: 0;
}

/* ---------------------------------------------------------------
   TOELETTATURA CERVETERI
   --------------------------------------------------------------- */
.vh-grooming {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f1a 55%, #3d2415 100%);
    overflow: hidden;
}
.vh-grooming::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 85% 30%, rgba(224,99,45,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(224,99,45,.10) 0%, transparent 60%);
    pointer-events: none;
}
.vh-grooming__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.vh-grooming__content .vh-section__subtitle {
    max-width: 500px;
}
.vh-grooming__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}
.vh-grooming__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.vh-grooming__list li:last-child {
    border-bottom: none;
}
.vh-grooming__list i {
    width: 40px;
    height: 40px;
    background: rgba(224,99,45,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--anim-orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.vh-grooming__list strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}
.vh-grooming__list span {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}
.vh-grooming__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.vh-grooming__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vh-grooming__card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--anim-radius);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}
.vh-grooming__card-icon {
    width: 72px;
    height: 72px;
    background: var(--anim-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(224,99,45,.35);
}
.vh-grooming__card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.35;
}
.vh-grooming__card p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0 0 24px;
}
.vh-grooming__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vh-grooming__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 6px 14px;
}
.vh-grooming__badge i {
    color: var(--anim-orange);
    font-size: 13px;
}
.vh-grooming__location {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(224,99,45,.12);
    border: 1px solid rgba(224,99,45,.25);
    border-radius: var(--anim-radius);
    padding: 16px 20px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
}
.vh-grooming__location i {
    font-size: 20px;
    color: var(--anim-orange);
    flex-shrink: 0;
}
.vh-grooming__location strong {
    color: #fff;
}

@media (max-width: 991px) {
    .vh-grooming__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
@media (max-width: 767px) {
    .vh-grooming__ctas {
        flex-direction: column;
    }
    .vh-grooming__ctas .vh-btn {
        justify-content: center;
    }
    .vh-grooming__card {
        padding: 28px 22px;
    }
}

/* ---------------------------------------------------------------
   MARCHI – logo strip
   --------------------------------------------------------------- */
.vh-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
    margin-top: 40px;
}
.vh-brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    transition: opacity .22s;
    filter: grayscale(100%);
}
.vh-brand-item:hover {
    opacity: 1;
    filter: none;
}
.vh-brand-item img {
    max-height: 52px;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

/* ---------------------------------------------------------------
   FORM DIETA
   --------------------------------------------------------------- */
.vh-dieta-wrap {
    background: var(--anim-dark);
    border-radius: var(--anim-radius);
    padding: 48px 44px;
    box-shadow: var(--anim-shadow);
}
.vh-dieta-wrap .vh-section__title { color: #fff; }
.vh-dieta-wrap .vh-section__subtitle { color: rgba(255,255,255,.7); }
.vh-dieta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.vh-dieta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 6px 16px;
}
.vh-dieta-badge i { color: var(--anim-orange); }

/* ---------------------------------------------------------------
   RECENSIONI
   --------------------------------------------------------------- */
.vh-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 44px;
}
.vh-review {
    background: #fff;
    border-radius: var(--anim-radius);
    padding: 28px;
    box-shadow: var(--anim-shadow);
    position: relative;
}
.vh-review::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 72px;
    color: var(--anim-orange);
    opacity: .12;
    font-family: Georgia, serif;
    line-height: 1;
}
.vh-review__stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.vh-review__text {
    font-size: 14px;
    color: var(--anim-text);
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}
.vh-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vh-review__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.vh-review__avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--anim-orange);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vh-review__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--anim-dark);
    margin: 0;
}
.vh-review__source {
    font-size: 12px;
    color: #999;
}

/* ---------------------------------------------------------------
   CONTATTI RAPIDI
   --------------------------------------------------------------- */
.vh-contact-bar {
    background: var(--anim-orange);
    padding: 32px 0;
}
.vh-contact-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.vh-contact-bar__items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}
.vh-contact-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity .2s;
}
.vh-contact-bar__item:hover { opacity: .8; color: #fff; text-decoration: none; }
.vh-contact-bar__item i { font-size: 18px; }
.vh-btn--white {
    background: #fff;
    color: var(--anim-orange);
    border-color: #fff;
}
.vh-btn--white:hover {
    background: var(--anim-dark);
    border-color: var(--anim-dark);
    color: #fff;
}

/* ---------------------------------------------------------------
   NEWSLETTER / FORM FOOTER
   --------------------------------------------------------------- */
.vh-newsletter-wrap {
    background: #fff;
    border-radius: var(--anim-radius);
    padding: 44px;
    box-shadow: var(--anim-shadow);
    max-width: 680px;
    margin: 44px auto 0;
}

/* ---------------------------------------------------------------
   CF7 override inside dark box
   --------------------------------------------------------------- */
.vh-dieta-wrap .wpcf7-form input[type="text"],
.vh-dieta-wrap .wpcf7-form input[type="email"],
.vh-dieta-wrap .wpcf7-form input[type="tel"],
.vh-dieta-wrap .wpcf7-form select,
.vh-dieta-wrap .wpcf7-form textarea {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 4px;
}
.vh-dieta-wrap .wpcf7-form input::placeholder,
.vh-dieta-wrap .wpcf7-form textarea::placeholder { color: rgba(255,255,255,.45); }
.vh-dieta-wrap .wpcf7-form label { color: rgba(255,255,255,.85); }
.vh-dieta-wrap .wpcf7-form input[type="submit"],
.vh-dieta-wrap .wpcf7-form button[type="submit"] {
    background: var(--anim-orange) !important;
    border-color: var(--anim-orange) !important;
    color: #fff !important;
}

/* ---------------------------------------------------------------
   Responsive tweaks
   --------------------------------------------------------------- */
@media (max-width: 767px) {
    .vh-section { padding: 48px 0; }
    .vh-hero { min-height: 520px; padding: 60px 0; }
    .vh-hero__ctas { flex-direction: column; }
    .vh-hero__ctas .vh-btn { justify-content: center; }
    .vh-dieta-wrap { padding: 32px 24px; }
    .vh-newsletter-wrap { padding: 28px 20px; }
    .vh-contact-bar__inner { flex-direction: column; align-items: flex-start; }

    /* Porto azzera il padding dei .container dentro .main-content.
       Nei breakout full-bleed (hero, contact-bar) il contenuto tocca
       il bordo schermo. Ripristiniamo respiro laterale. */
    .vh-hero .container,
    .vh-contact-bar .container,
    .vh-grooming .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Gap loghi marchi: 48px di colonna è troppo su 375px */
    .vh-brands {
        gap: 20px 28px;
    }
}
@media (max-width: 480px) {
    .vh-reviews { grid-template-columns: 1fr; }
}
