/* ===== VARIABLES ===== */
:root {
    --rosso: #B71C1C;
    --rosso-dark: #8B0000;
    --rosso-light: #E53935;
    --verde: #1B5E20;
    --verde-dark: #0D3B0F;
    --bianco: #FAFAFA;
    --nero: #0A0A0A;
    --grigio: #1A1A1A;
    --grigio-light: #2A2A2A;
    --grigio-text: #999;
    --oro: #C9A14A;
    --oro-light: #D4AF57;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Bebas Neue', Impact, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-light: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--nero);
    color: var(--bianco);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 24px;
}

.loader-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--grigio-light);
    margin-top: 30px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--rosso);
    animation: loadProgress 1.8s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 46px;
    width: auto;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.logo-emblem {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--rosso);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    border: 2px solid var(--oro);
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-emblem:hover {
    transform: rotate(10deg) scale(1.05);
}

.logo-u, .logo-s {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    color: var(--bianco);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-accent);
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--bianco);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--oro);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rosso);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--bianco);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.nav-social:hover {
    background: var(--rosso);
    border-color: var(--rosso);
    color: var(--bianco);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--bianco);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.5) 40%,
        rgba(139,0,0,0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--oro);
    border: 1px solid var(--oro);
    padding: 8px 24px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 400;
    font-style: italic;
    color: var(--bianco);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s 0.7s forwards;
}

.hero-line-2 {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(60px, 12vw, 140px);
    letter-spacing: 10px;
    color: var(--rosso);
    line-height: 1;
    text-shadow: 0 4px 30px rgba(183,28,28,0.4);
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s 1.1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s 1.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--rosso);
    color: var(--bianco);
    border: 2px solid var(--rosso);
}

.btn-primary:hover {
    background: var(--rosso-dark);
    border-color: var(--rosso-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183,28,28,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bianco);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--bianco);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rosso), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--rosso);
    border-color: var(--rosso);
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 18px 0;
    background: var(--rosso);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 6px;
    color: var(--bianco);
    padding-right: 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NEWS LOADING ===== */
.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--grigio-text);
    font-size: 15px;
}

.news-loading i {
    margin-right: 8px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    overflow: hidden;
}

#o-nama {
    overflow: visible;
}

.section-dark {
    background: var(--grigio);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--oro);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 4px;
    color: var(--bianco);
    line-height: 1.1;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--rosso);
    margin-top: 16px;
}

.title-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 16px;
    color: var(--grigio-text);
    max-width: 500px;
    margin-top: 16px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: visible;
}

.about-images {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.about-img-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
}

.about-img-main img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 2;
    border: 4px solid var(--nero);
    border-radius: 4px;
    overflow: hidden;
}

.about-img-secondary img {
    width: 100%;
    display: block;
    border-radius: 4px;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-stat-card {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 3;
    background: var(--rosso);
    padding: 20px 28px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.about-stat-card .stat-number {
    font-family: var(--font-accent);
    font-size: 48px;
    color: var(--bianco);
    line-height: 1;
}

.about-stat-card .stat-plus {
    font-family: var(--font-accent);
    font-size: 36px;
    color: var(--oro);
}

.about-stat-card .stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.about-content .section-tag {
    margin-bottom: 4px;
}

.about-lead {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 24px 0 16px;
    line-height: 1.8;
}

.about-content p {
    color: var(--grigio-text);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    text-align: center;
    padding: 20px 8px;
    background: var(--grigio);
    border-radius: 4px;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--grigio-light);
    transform: translateY(-4px);
}

.value-item i {
    font-size: 20px;
    color: var(--rosso);
    margin-bottom: 8px;
    display: block;
}

.value-item span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--oro);
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.88);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 16px;
}

.stat-icon {
    display: block;
    font-size: 28px;
    color: var(--rosso);
    margin-bottom: 16px;
}

.stat-item .stat-number {
    font-family: var(--font-accent);
    font-size: 56px;
    color: var(--bianco);
    line-height: 1;
}

.stat-item .stat-suffix {
    font-family: var(--font-accent);
    font-size: 36px;
    color: var(--oro);
}

.stat-item .stat-label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grigio-text);
    margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--grigio-text);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--rosso);
    color: var(--bianco);
    border-color: var(--rosso);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 4px;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--bianco);
}

/* ===== VIDEO GALLERY ===== */
.video-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    background: var(--grigio);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--grigio-border);
}

.video-featured .video-embed {
    aspect-ratio: 16/9;
}

.video-featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 32px 0;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 16px;
}

.video-featured-info h3 {
    font-family: var(--font-accent);
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 2px;
    color: var(--bianco);
    margin-bottom: 12px;
    line-height: 1.2;
}

.video-featured-info p {
    font-size: 15px;
    color: var(--grigio-text);
    line-height: 1.7;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: var(--nero);
    cursor: pointer;
}

.video-embed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}

.video-embed:hover::after {
    background: rgba(0,0,0,0.15);
}

.video-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-embed:hover img {
    transform: scale(1.05);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #B71C1C;
    border: 3px solid rgba(255,255,255,0.4);
    color: #FAFAFA;
    font-size: 24px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-left: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.play-btn:hover {
    background: #E53935;
    transform: translate(-50%, -50%) scale(1.15);
    border-color: #fff;
    box-shadow: 0 0 30px rgba(183, 28, 28, 0.6);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.video-card {
    background: var(--grigio);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--grigio-border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--rosso);
    box-shadow: 0 12px 40px rgba(183, 28, 28, 0.15);
}

.video-card h4 {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--bianco);
    line-height: 1.4;
}

.video-cta {
    text-align: center;
}

.video-cta .btn {
    gap: 10px;
}

.video-cta .btn .fab {
    font-size: 18px;
    color: #FF0000;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-featured {
        grid-template-columns: 1fr;
    }
    .video-featured-info {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card {
    background: var(--grigio);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.news-card.featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

.news-card.featured .news-img {
    height: 100%;
    min-height: 300px;
}

.news-card.featured {
    display: grid;
    grid-template-rows: 1fr auto;
}

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rosso);
    color: var(--bianco);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
}

.news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: var(--grigio-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--bianco);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-body p {
    font-size: 14px;
    color: var(--grigio-text);
    line-height: 1.7;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rosso-light);
    margin-top: 16px;
}

.news-link:hover {
    color: var(--bianco);
    gap: 12px;
}

/* ===== TIMELINE / EVENTS ===== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--rosso), var(--grigio-light));
}

.timeline-item {
    position: relative;
    padding: 0 0 50px 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--rosso);
    border: 3px solid var(--grigio);
}

.timeline-date {
    font-family: var(--font-accent);
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--oro);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--bianco);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--grigio-text);
    margin-bottom: 8px;
}

.timeline-location {
    font-size: 13px;
    color: var(--rosso-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== MEMBERSHIP ===== */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.membership-card {
    background: var(--grigio);
    padding: 40px 28px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.membership-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183,28,28,0.3);
    box-shadow: var(--shadow);
}

.membership-card.highlight {
    border-color: var(--rosso);
    position: relative;
}

.membership-card.highlight::before {
    content: 'Popularno';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rosso);
    color: var(--bianco);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
}

.membership-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(183,28,28,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.membership-icon i {
    font-size: 26px;
    color: var(--rosso);
}

.membership-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--bianco);
    margin-bottom: 12px;
}

.membership-card p {
    font-size: 14px;
    color: var(--grigio-text);
    line-height: 1.7;
}

.membership-cta {
    text-align: center;
    padding: 40px;
    background: var(--grigio);
    border-radius: 4px;
    border: 1px solid var(--grigio-light);
}

.membership-cta p {
    font-size: 16px;
    color: var(--grigio-text);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 15px;
    color: var(--grigio-text);
    margin-top: 20px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(183,28,28,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rosso);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--bianco);
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 14px;
    color: var(--grigio-text);
}

.contact-item a:hover {
    color: var(--rosso-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--bianco);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rosso);
    background: rgba(255,255,255,0.08);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--grigio);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer-top {
    padding: 80px 0 40px;
    background: var(--grigio);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--grigio-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--rosso);
    border-color: var(--rosso);
    color: var(--bianco);
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--bianco);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--grigio-text);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rosso-light);
    padding-left: 8px;
}

.footer-newsletter h4 {
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--bianco);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--grigio-text);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: var(--bianco);
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form input:focus {
    border-color: var(--rosso);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--rosso);
    border: none;
    color: var(--bianco);
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--rosso-dark);
}

.footer-bottom {
    padding: 24px 0;
    background: var(--nero);
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--grigio-text);
}

.footer-quote {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--oro) !important;
    margin-top: 6px;
    font-size: 14px !important;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--bianco);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--rosso);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--rosso);
    color: var(--bianco);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(183,28,28,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rosso-dark);
    transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--grigio);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .nav-link {
        font-size: 16px;
    }

    .section {
        padding: 80px 0;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: 1;
        grid-row: auto;
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-nav {
        right: 20px;
        bottom: 30px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-img-secondary {
        width: 45%;
        right: -10px;
        bottom: -15px;
    }

    .about-stat-card {
        top: -10px;
        right: -10px;
        padding: 14px 20px;
    }

    .about-stat-card .stat-number {
        font-size: 36px;
    }
}

/* ===== NEWS MODAL ===== */
.news-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.news-modal-overlay.active {
    display: flex;
}
.news-modal {
    background: var(--grigio);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.news-modal-close:hover {
    background: var(--rosso);
}
.news-modal-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.news-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-modal-body {
    padding: 30px;
}
.news-modal-date {
    font-size: 13px;
    color: var(--oro);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-modal-body h2 {
    font-family: var(--font-display);
    font-size: 26px;
    margin: 10px 0 20px;
    line-height: 1.3;
}
.news-modal-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    white-space: pre-line;
}
.news-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--rosso);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.news-modal-link:hover {
    background: var(--rosso-dark);
}

@media (max-width: 768px) {
    .news-modal {
        max-width: 100%;
        margin: 10px;
    }
    .news-modal-body {
        padding: 20px;
    }
    .news-modal-body h2 {
        font-size: 20px;
    }
}
