/* ── Font ──────────────────────────────────────────────────────── */
@font-face {
    font-family: 'StencilStd';
    src: url('../fonts/StencilStd.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── Reset & base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #e0e0e0;
    background: #585858;
}

a { text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════
   HERO — mobile first
══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: url('../images/landing_big.png') center top / cover no-repeat;
    color: #fff;
}

/* Fade inferiore hero→info */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent 0%, #585858 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-nav,
.hero-content { position: relative; z-index: 2; }

/* ── Navbar ──────────────────────────────────────────────────── */
.hero-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.2rem;
    z-index: 100;
    background: rgba(10,10,10,0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s, border-color 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.btn-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* ── Hero content ──────────────────────────────────────────────── */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 1.2rem 5rem;
}

.hero-eyebrow {
    font-family: 'StencilStd', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-title {
    font-family: 'StencilStd', sans-serif;
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ══════════════════════════════════════════════════════════════════
   INFO — mobile first
══════════════════════════════════════════════════════════════════ */
.info {
    background: #585858;
    padding: 3.5rem 1.2rem;
}

.info-inner { max-width: 1060px; margin: 0 auto; }

.info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-header h2 {
    font-family: 'StencilStd', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #f0f0f0;
    margin-bottom: 0.6rem;
}

.info-header p {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Cards */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.info-card {
    background: #7a7a7a;
    border-radius: 12px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    border-top: 3px solid #555;
}

.info-card .card-icon {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 0.8rem;
}

.info-card h3 {
    font-family: 'StencilStd', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.info-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.info-card a { color: #ddd; font-weight: 600; }

.info-card .fb-link {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    background: #1877f2;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s;
}

.info-card .fb-link:hover {
    background: #0d65d9;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER — mobile first
══════════════════════════════════════════════════════════════════ */
footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.45);
    padding: 1.5rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

footer p { font-size: 0.82rem; }

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-links .sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

.footer-links .footer-email { font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════════════
   TABLET ≥ 600px
══════════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
    .hero-nav     { padding: 1.2rem 2rem; }
    .hero-content { padding: 3rem 2rem 5rem; }
    .info         { padding: 4rem 2rem; }

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

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ══════════════════════════════════════════════════════════════════
   DESKTOP ≥ 900px
══════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .hero {
        background: url('../images/landing_big.png') center center / cover no-repeat;
    }

    .hero::after { height: 280px; }

    .hero-nav     { padding: 1.2rem 2.5rem; }
    .hero-content {
        padding: 4rem 2.5rem 5rem;
        max-width: 700px;
    }

    .hero-eyebrow { font-size: 1.1rem; }

    .info         { padding: 5rem 2.5rem; }
    .info-header  { margin-bottom: 3.5rem; }
    .info-header h2 { font-size: 2.4rem; }
    .info-header p  { font-size: 1.05rem; }

    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

    .info-card { padding: 2rem 1.8rem; }
    .info-card h3 { font-size: 1.3rem; }
    .info-card p  { font-size: 0.92rem; }

    footer { padding: 2rem 2.5rem; }
}
