/* network.css - Derived from TravelItaly Optimized WP Theme */

:root {
    --primary-h: 210;
    --primary-s: 100%;
    --primary-l: 50%;
    --color-primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --color-primary-dark: hsl(var(--primary-h), var(--primary-s), 40%);
    --color-primary-light: hsl(var(--primary-h), var(--primary-s), 95%);

    --accent-h: 35;
    --accent-s: 100%;
    --accent-l: 55%;
    --color-accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));

    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --radius-md: 16px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.font-serif {
    font-family: var(--font-serif);
}

.font-heading {
    font-family: var(--font-heading);
}

/* UNIFIED HEADER v5 */
.unified-header-v5 {
    background: #fff;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10001;
    height: 90px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.uh-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
}

.uh-logo {
    height: 100%;
    background: #009246;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.uh-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.uh-nav {
    display: flex;
    padding-left: 2rem;
}

.uh-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.uh-nav ul li a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
}

.uh-nav ul li a:hover {
    color: #009246;
}

.uh-location {
    display: flex;
    flex-direction: column;
    padding: 8px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-left: 1.5rem;
    line-height: 1;
}

.uh-ticker-window {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    margin-left: 1rem;
}

.uh-ticker-track {
    display: inline-flex;
    gap: 4rem;
    white-space: nowrap;
    animation: uhScrollV5 60s linear infinite;
}

@keyframes uhScrollV5 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.uh-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #334155;
}

.uh-ticker-stemma {
    height: 20px;
    width: auto;
}

/* HERO SLIDER */
.hero-slider-container {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-search-form {
    background: #fff;
    padding: 6px;
    border-radius: 60px;
    display: flex;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: var(--shadow-xl);
}

.hero-search-form input {
    flex: 1;
    border: none;
    padding: 0 25px;
    outline: none;
    font-size: 1rem;
    border-radius: 40px;
}

.hero-search-form button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 800;
    cursor: pointer;
}

/* REGIONS TRACK */
.regions-track-container {
    padding: 4rem 0;
    background: #fff;
}

.regions-track {
    display: flex;
    gap: 3rem;
    animation: regionScroll 40s linear infinite;
}

@keyframes regionScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.region-circle-card {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.region-circle-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.region-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARDS & GRIDS */
.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card-national {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.card-national:hover {
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .uh-ticker-window {
        display: none;
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-search-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .hero-search-form button {
        width: 100%;
        margin-top: 10px;
    }

    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}. l e a f l e t - c o n t r o l - a t t r i b u t i o n   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }  
 