/* ============================================================
   HAPPYLAND CUSTOM STYLES
   Estensioni personalizzate mantenendo lo stile originale
   Template Base: Consua - Consulting Business Template
   ============================================================ */

/* ============================================================
   CUSTOM COLOR OVERRIDES
   Personalizza i colori mantenendo la palette del template
   ============================================================ */

:root {
    /* Happyland Brand Colors - Mantieni i colori originali o personalizza */
    --happyland-primary: #d71b6a;        /* Rosa/Fucsia principale */
    --happyland-secondary: #e23a75;      /* Rosa secondario */
    --happyland-accent: #57B33E;         /* Verde accento */
    --happyland-dark: #1D2027;           /* Scuro principale */

    /* Custom Gradients per Happyland */
    --happyland-gradient: linear-gradient(90deg, #e23a75 0%, #d71b6a 100%);
    --happyland-gradient-reverse: linear-gradient(90deg, #d71b6a 0%, #e23a75 100%);

    /* Custom Shadows */
    --happyland-shadow: -1px 3px 10px 0 rgba(215, 27, 106, 0.3);
    --happyland-shadow-hover: -1px 5px 15px 0 rgba(215, 27, 106, 0.5);
}

/* ============================================================
   CUSTOM TYPOGRAPHY
   Aggiungi stili tipografici personalizzati se necessario
   ============================================================ */

/* Brand Titles - Stile specifico per Happyland */
.happyland-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--happyland-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.happyland-subtitle {
    font-family: var(--font-default);
    font-weight: 500;
    color: var(--happyland-secondary);
}

/* ============================================================
   CUSTOM BUTTONS
   Pulsanti personalizzati Happyland
   ============================================================ */

.btn-happyland {
    background: linear-gradient(90deg, #d71b6a 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 27, 106, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-happyland:hover {
    background: linear-gradient(90deg, #c01558 0%, #6a3e94 100%);
    box-shadow: 0 6px 20px rgba(215, 27, 106, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none;
}

.btn-happyland-outline {
    background: transparent;
    color: #d71b6a !important;
    border: 3px solid #d71b6a;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-happyland-outline:hover {
    background: linear-gradient(90deg, #d71b6a 0%, #764ba2 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================================
   CUSTOM CARDS
   Stili card personalizzati per Happyland
   ============================================================ */

.happyland-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
}

.happyland-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(215, 27, 106, 0.15);
}

.happyland-card-title {
    color: var(--happyland-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.happyland-card-text {
    color: var(--color-paragraph);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================================
   CUSTOM TEAM/NEGOZI CARDS
   Personalizzazioni per le card negozi
   ============================================================ */

.team-style-one:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease;
}

.team-style-one .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-style-one .thumb img {
    transition: transform 0.5s ease;
}

.team-style-one:hover .thumb img {
    transform: scale(1.1);
}

/* Badge negozio */
.negozio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--happyland-gradient);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* ============================================================
   CUSTOM ACCORDION/FAQ
   Stili personalizzati per sezione FAQ
   ============================================================ */

.accordion-button {
    background-color: #f8f9fa;
    color: var(--color-heading);
    font-weight: 600;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background: var(--happyland-gradient);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(215, 27, 106, 0.25);
    border-color: var(--happyland-primary);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* ============================================================
   CUSTOM NAVIGATION
   Personalizzazioni navbar Happyland
   ============================================================ */

/* Logo hover effect */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Menu item attivo */
.nav.navbar-nav li a.active {
    color: var(--happyland-primary) !important;
    font-weight: 600;
}

/* Menu hover effect */
.nav.navbar-nav li a:hover {
    color: var(--happyland-primary) !important;
}

/* ============================================================
   CUSTOM BANNER/HERO
   Personalizzazioni banner principale
   ============================================================ */

.banner-style-one .content h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-style-one .content h4 {
    color: var(--happyland-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Banner overlay gradient */
.banner-thumb.dark::before {
    background: linear-gradient(135deg, rgba(215, 27, 106, 0.5) 0%, rgba(29, 32, 39, 0.7) 100%);
}

/* ============================================================
   CUSTOM PARTNER SECTION
   Stili sezione partner
   ============================================================ */

.partner-items ul li {
    transition: all 0.3s ease;
}

.partner-items ul li:hover {
    transform: scale(1.1);
}

.partner-items ul li img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-items ul li:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   CUSTOM CALL TO ACTION
   Stili sezione CTA
   ============================================================ */

.request-call-back-area {
    position: relative;
}

.request-call-back-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(215, 27, 106, 0.8) 0%, rgba(29, 32, 39, 0.9) 100%);
    z-index: 1;
}

.request-call-back-area > .container {
    position: relative;
    z-index: 2;
}

/* Counter styling */
.timer {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   CUSTOM FOOTER
   Personalizzazioni footer
   ============================================================ */

footer.bg-dark {
    background: linear-gradient(180deg, #1D2027 0%, #0e0e0e 100%) !important;
}

.footer-bottom a {
    color: var(--happyland-primary);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--happyland-secondary);
}

/* ============================================================
   CUSTOM ANIMATIONS
   Animazioni personalizzate Happyland
   ============================================================ */

@keyframes happyland-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.happyland-pulse {
    animation: happyland-pulse 2s infinite;
}

@keyframes happyland-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.happyland-float {
    animation: happyland-float 3s ease-in-out infinite;
}

/* ============================================================
   CUSTOM UTILITIES
   Classi utility personalizzate
   ============================================================ */

/* Background gradients */
.bg-happyland-gradient {
    background: var(--happyland-gradient) !important;
}

.bg-happyland-gradient-reverse {
    background: var(--happyland-gradient-reverse) !important;
}

/* Text colors */
.text-happyland-primary {
    color: var(--happyland-primary) !important;
}

.text-happyland-secondary {
    color: var(--happyland-secondary) !important;
}

/* Border utilities */
.border-happyland {
    border-color: var(--happyland-primary) !important;
}

.border-happyland-2 {
    border: 2px solid var(--happyland-primary) !important;
}

/* Spacing utilities specifici Happyland */
.py-happyland {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.my-happyland {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

/* ============================================================
   RESPONSIVE CUSTOM STYLES
   Media queries per personalizzazioni responsive
   ============================================================ */

/* Desktop Large */
@media (min-width: 1200px) {
    .happyland-card {
        padding: 40px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .py-happyland {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .happyland-card {
        padding: 25px;
    }

    .happyland-card-title {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .py-happyland {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .happyland-card {
        padding: 20px;
    }

    .happyland-card-title {
        font-size: 18px;
    }

    .btn-happyland,
    .btn-happyland-outline {
        padding: 10px 25px;
        font-size: 14px;
    }

    .timer {
        font-size: 36px;
    }
}

/* Mobile Small */
@media (max-width: 575px) {
    .happyland-title {
        font-size: 24px;
    }

    .happyland-subtitle {
        font-size: 16px;
    }

    .timer {
        font-size: 28px;
    }
}

/* ============================================================
   DARK MODE SUPPORT (Optional)
   Supporto dark mode se necessario
   ============================================================ */

@media (prefers-color-scheme: dark) {
    /* Aggiungi stili dark mode qui se necessario */
    /* Esempio:
    .happyland-card {
        background: #2a2a2a;
        color: #ffffff;
    }
    */
}

/* ============================================================
   PRINT STYLES
   Stili per stampa
   ============================================================ */

@media print {
    .navbar,
    .top-bar-area,
    .footer-bottom,
    .btn-happyland,
    .social {
        display: none !important;
    }

    .happyland-card {
        page-break-inside: avoid;
    }
}

/* ============================================================
   ACCESSIBILITY IMPROVEMENTS
   Miglioramenti accessibilita'
   ============================================================ */

/* Focus states migliorati */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--happyland-primary);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--happyland-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================================
   CUSTOM LOADER/PRELOADER (Optional)
   Preloader personalizzato Happyland
   ============================================================ */

.happyland-loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--happyland-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   CUSTOM SCROLLBAR (Optional)
   Scrollbar personalizzata per browser Webkit
   ============================================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--happyland-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--happyland-primary);
}

/* ============================================================
   MENU HEADER OPTIMIZATION
   Fix layout e spacing navbar
   ============================================================ */

.navbar-nav > li > a {
    padding: 0 10px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover {
    padding: 0 10px !important;
    color: var(--happyland-primary) !important;
}

/* ============================================================
   CARD NEGOZI - ENHANCED STYLING
   Miglioramenti card negozi con badge
   ============================================================ */

.team-style-one {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.team-style-one .info {
    min-height: 100px;
    padding: 20px;
    background: #ffffff;
    border-top: 3px solid var(--happyland-gradient);
}

.team-style-one .info h4 {
    color: var(--happyland-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.team-style-one .info p {
    color: #666666;
    font-size: 14px;
    margin: 0;
}

/* Badge styling migliorato */
.negozio-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    z-index: 15;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.negozio-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #333;
}

.negozio-badge.featured {
    background: var(--happyland-gradient);
    color: white;
}

/* ============================================================
   RESPONSIVE MENU IMPROVEMENTS
   Media query per navbar responsive
   ============================================================ */

@media (max-width: 991px) {
    .navbar-nav > li > a {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    .navbar-nav > li > a:hover {
        padding: 10px 15px !important;
    }

    .navbar-brand {
        padding: 0.5rem 0 !important;
    }

    .team-style-one .info {
        min-height: 90px;
    }
}

/* ============================================================
   CTA BUTTONS - COMUNICAZIONE DIRETTA
   Bottoni WhatsApp e Phone ottimizzati
   ============================================================ */

.btn-whatsapp {
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BA58 0%, #1ea852 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-phone {
    background: #007bff;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    text-decoration: none;
}

.btn-phone:active {
    transform: translateY(0);
}

.btn-whatsapp-outline {
    background: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-phone-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-phone-outline:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* ============================================================
   SECTION SPACING UTILITIES
   Spacing standardizzato per sezioni
   ============================================================ */

.section-spacing {
    padding: 80px 0;
}

.section-spacing-sm {
    padding: 40px 0;
}

.section-spacing-lg {
    padding: 120px 0;
}

.section-spacing-top {
    padding-top: 80px;
}

.section-spacing-bottom {
    padding-bottom: 80px;
}

/* Desktop adjustments */
@media (min-width: 1200px) {
    .section-spacing-xl {
        padding: 150px 0;
    }
}

/* Tablet adjustments */
@media (max-width: 991px) {
    .section-spacing {
        padding: 60px 0;
    }

    .section-spacing-lg {
        padding: 80px 0;
    }

    .section-spacing-top {
        padding-top: 60px;
    }

    .section-spacing-bottom {
        padding-bottom: 60px;
    }

    .btn-whatsapp,
    .btn-phone {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .section-spacing {
        padding: 40px 0;
    }

    .section-spacing-lg {
        padding: 60px 0;
    }

    .section-spacing-top {
        padding-top: 40px;
    }

    .section-spacing-bottom {
        padding-bottom: 40px;
    }

    .btn-whatsapp,
    .btn-phone {
        padding: 10px 14px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .team-style-one .info {
        min-height: auto;
    }
}

/* ============================================================
   ENHANCED BUTTON GROUP STYLING
   Gruppi di bottoni ottimizzati
   ============================================================ */

.btn-group-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-group-cta .btn-whatsapp,
.btn-group-cta .btn-phone,
.btn-group-cta .btn-happyland {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 767px) {
    .btn-group-cta {
        flex-direction: column;
    }

    .btn-group-cta .btn-whatsapp,
    .btn-group-cta .btn-phone,
    .btn-group-cta .btn-happyland {
        width: 100%;
    }
}

/* ============================================================
   ENHANCED CARD STYLING FOR NEGOZI
   Ulteriori miglioramenti visuali
   ============================================================ */

.team-style-one {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-style-one:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(215, 27, 106, 0.2);
}

.team-style-one .thumb {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-style-one .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-style-one:hover .thumb img {
    transform: scale(1.15) rotate(1deg);
}

.team-style-one .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ============================================================
   HOMEPAGE NEW SECTIONS - STILI AGGIUNTIVI
   Stili per le nuove sezioni della homepage
   ============================================================ */

/* Contact Info in Card Negozi */
.contact-info {
    font-size: 14px;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p i {
    width: 18px;
    flex-shrink: 0;
}

.contact-info a {
    color: var(--color-paragraph);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--happyland-primary);
}

/* Badge Negozio - Aperto/Chiuso Override */
.negozio-badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.negozio-badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

/* Social Icons WhatsApp */
.team-style-one .social ul li.whatsapp a {
    background: #25D366;
}

.team-style-one .social ul li.whatsapp a:hover {
    background: #128C7E;
}

.team-style-one .social ul li.phone a {
    background: #007bff;
}

.team-style-one .social ul li.phone a:hover {
    background: #0056b3;
}

/* Service Card Badges */
.services-style-one .badge-info {
    margin-top: 15px;
}

.services-style-one .badge-info .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
}

/* Check List Light (per CTA) */
.check-list.light li {
    color: #ffffff;
    padding: 8px 0;
}

.check-list.light li i {
    color: #ffffff;
    margin-right: 12px;
}

/* Form Franchising Quick */
.contact-form-style-one {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.border-radius {
    border-radius: 15px;
}

.p-40 {
    padding: 40px !important;
}

.contact-form-style-one .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-style-one .form-control:focus {
    border-color: var(--happyland-primary);
    box-shadow: 0 0 0 0.2rem rgba(215, 27, 106, 0.15);
}

.contact-form-style-one .form-check-input:checked {
    background-color: var(--happyland-primary);
    border-color: var(--happyland-primary);
}

.w-100 {
    width: 100%;
}

/* Blog/News Cards */
.blog-style-one .date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--happyland-gradient);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    z-index: 10;
}

.blog-style-one .date strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.blog-style-one .date span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 3px;
}

.blog-style-one .meta ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-style-one .meta ul li {
    font-size: 13px;
    color: var(--color-paragraph);
}

.blog-style-one .meta ul li i {
    color: var(--happyland-primary);
    margin-right: 5px;
}

.btn-simple {
    color: var(--happyland-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-simple:hover {
    color: var(--happyland-secondary);
    gap: 12px;
}

/* Fun Facts / Statistiche */
.fun-factor-area .fun-fact {
    padding: 30px 20px;
}

.fun-factor-area .counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.fun-factor-area .timer {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.fun-factor-area .operator {
    font-size: 36px;
    font-weight: 700;
}

.fun-factor-area .medium {
    font-size: 16px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section Enhancements */
.about-thumb {
    position: relative;
}

.about-thumb .fun-fact-grid {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--happyland-gradient);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-thumb .fun-fact-grid .counter {
    display: flex;
    align-items: baseline;
    gap: 5px;
    justify-content: center;
}

.about-thumb .fun-fact-grid .timer {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
}

.about-thumb .fun-fact-grid .operator {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.about-thumb .fun-fact-grid .medium {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;
    display: block;
}

.lead {
    font-size: 18px;
    line-height: 1.7;
}

/* Responsive Adjustments Homepage Sections */
@media (max-width: 991px) {
    .contact-form-style-one {
        margin-top: 30px;
    }

    .p-40 {
        padding: 30px !important;
    }

    .about-thumb .fun-fact-grid {
        position: static;
        margin-top: 20px;
    }

    .mb-md-50 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .p-40 {
        padding: 25px !important;
    }

    .fun-factor-area .timer {
        font-size: 42px;
    }

    .fun-factor-area .operator {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .blog-style-one .date {
        padding: 8px 12px;
    }

    .blog-style-one .date strong {
        font-size: 20px;
    }

    .lead {
        font-size: 16px;
    }

    .mt-xs-30 {
        margin-top: 30px;
    }
}

/* Position Relative for Overlay */
.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* ============================================================
   MODERN HERO SLIDER - HAPPYLAND BRAND
   Completely redesigned with clean, modern aesthetics
   ============================================================ */

/* Hero Slider Container */
.happyland-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient Overlay - Clean and Simple */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(215, 27, 106, 0.88) 0%, rgba(118, 75, 162, 0.92) 100%);
    z-index: 1;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Badge/Subtitle */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    margin-right: 8px;
    color: #FFD700;
}

/* Main Title - Clean and Bold */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

/* Description */
.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 400;
}

/* Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #d71b6a !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.5);
    color: #d71b6a !important;
    text-decoration: none;
    background: #ffffff;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

/* Secondary Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff !important;
    text-decoration: none;
}

/* Navigation Arrows - Clean Design */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-nav-prev {
    left: 40px;
}

.hero-nav-next {
    right: 40px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #d71b6a;
    transform: translateY(-50%) scale(1.1);
}

/* Pagination - Modern Dots */
.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: #ffffff;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 35px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .happyland-hero-slider {
        height: 80vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-nav-prev,
    .hero-nav-next {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .hero-nav-prev {
        left: 20px;
    }

    .hero-nav-next {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .happyland-hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 14px;
    }

    .hero-nav-prev,
    .hero-nav-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-nav-prev {
        left: 15px;
    }

    .hero-nav-next {
        right: 15px;
    }

    .hero-pagination {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 32px;
    }
}

/* ============================================================
   TEXT CONTRAST IMPROVEMENTS
   Migliora il contrasto dei testi per accessibilità
   ============================================================ */

/* Assicura che i testi su background gradient siano sempre leggibili */
.bg-happyland-gradient *,
.bg-happyland-gradient-reverse * {
    color: #ffffff !important;
}

/* Testi su card bianche - devono essere scuri */
.happyland-card h1,
.happyland-card h2,
.happyland-card h3,
.happyland-card h4,
.happyland-card h5,
.happyland-card h6 {
    color: #2c3e50 !important;
}

.happyland-card p,
.happyland-card li,
.happyland-card span {
    color: #4a5568 !important;
}

/* Services cards - testo scuro su background chiaro */
.services-style-one h4,
.services-style-one h3 {
    color: #2c3e50 !important;
}

.services-style-one p {
    color: #4a5568 !important;
}

/* FAQ text - assicura leggibilità */
.accordion-button {
    color: #2c3e50 !important;
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
}

.accordion-body {
    color: #4a5568 !important;
}

/* Card negozi - titoli e testi */
.team-style-one .info h4,
.team-style-one .info h3 {
    color: #d71b6a !important;
}

.team-style-one .info p,
.team-style-one .info span {
    color: #4a5568 !important;
}

/* Blog/News cards */
.blog-style-one h4,
.blog-style-one h3 {
    color: #2c3e50 !important;
}

.blog-style-one p {
    color: #4a5568 !important;
}

/* About section */
.about-style-one h2,
.about-style-one h3,
.about-style-one h4 {
    color: #2c3e50 !important;
}

.about-style-one p,
.about-style-one li {
    color: #4a5568 !important;
    line-height: 1.8;
}

/* Headings generali - assicura sempre buon contrasto */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Paragrafi - colore scuro leggibile */
p {
    color: #4a5568;
    line-height: 1.7;
}

/* Links - colore brand con hover */
a:not(.btn):not(.btn-happyland):not(.btn-hero-primary):not(.btn-hero-secondary) {
    color: #d71b6a;
    transition: color 0.3s ease;
}

a:not(.btn):not(.btn-happyland):not(.btn-hero-primary):not(.btn-hero-secondary):hover {
    color: #764ba2;
}

/* Testi su background scuri - forza bianco */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark p,
.bg-dark li,
.bg-dark span {
    color: #ffffff !important;
}

/* Site headings */
.site-heading h2,
.site-heading h3,
.site-heading h4 {
    color: #2c3e50 !important;
    font-weight: 800 !important;
}

.site-heading p {
    color: #4a5568 !important;
}

/* ============================================================
   END CUSTOM STYLES
   ============================================================ */
