:root {
    --red: #e43c3f;
    --dark: #000;
    --bg: #ffffff;
    --text: #1b1a1a;
    --grey: #efefef;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--grey);
    color: var(--text);
}

a{
    color: var(--red);
}
a:hover{
    color: #b11a1a;
}

/* NAVBAR */
.navbar {
    background: var(--dark);
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--red);
}

/* LAYOUT */
.page-wrapper {
    max-width: 520px;
    margin: auto;
}

.logo-hero {
    max-width: 280px;
}

/* BUTTONS */
.btn-black {
    background: #151515;
    color: #fff;
}
.btn-black:hover {
    background: #000;
    color: #fff;
}

.btn-red {
    background: #d52424;
    color: #fff;
}
.btn-red:hover {
    background: var(--red);
    color: #fff;
}

.btn:hover {
    opacity: .9;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* NEWSLETTER */
.newsletter {
    background: #111;
    border-radius: 10px;
    padding: 20px;
}

footer {
    font-size: 13px;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

#newsletter-form{
    padding: 20px;
    text-align: left;
    color: #ffffff;
    background: #0a0a0a;
    border-radius:10px;
    margin-bottom: 40px;
}
/* HERO BANNER */
.hero-banner {
    position: relative;
    height: 65vh;
    min-height: 420px;
    background-image: url('https://hoplix.com/data/stores/00004472/header.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: .9;
}

/* HERO SOCIAL ICONS */
.hero-social {
    z-index: 2;
}

.social-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
}

.social-circle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
    opacity: .9;
    color:#ffffff
}

/* BRAND COLORS */
.social-circle.facebook {
    background: #1877f2;
}

.social-circle.instagram {
    background: radial-gradient(
            circle at 30% 110%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%
    );
}

.social-circle.mail {
    background: #0d0d0d; /* rosso Foggia Flag */
}

/* FOOTER ROSSONERO */
.site-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
    font-size: 13px;
    letter-spacing: .5px;
    border-top: 20px solid var(--red);
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover {
    color: var(--red);
}
