/* ============================================================
   LES VIGNERONS DU NARBONNAIS — Stylesheet
   ============================================================ */


/* ============================================================
   1. RESET & BASE
   ============================================================ */

body {
    margin: 0;
    background-color: #333;
    color: #fff;
    width: 100vw;
    height: 100svh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   2. BACKGROUND VIDEO
   ============================================================ */

.video-container {
    position: absolute;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

#background-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.00) 68.22%,
        rgba(0, 0, 0, 0.40) 100%
    );
    background-blend-mode: multiply;
}


/* ============================================================
   3. LAYOUT PRINCIPAL
   ============================================================ */

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 50%;
}


/* ============================================================
   4. HEADING (logos + "devient")
   ============================================================ */

.heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    @media screen and (max-width:980px) {
        flex-direction: column ;
        gap: 10px;
    }
    .footer-1{
        width: 100%;
    }
}

.neotera {
    width: 33%;
    height: 150px;
    object-fit: contain;
    @media screen and (max-width:980px) {
    width: 50%;
    }
}

.vdn {
    width: 33%;
    height: auto;
    @media screen and (max-width:980px) {
    width: 100%;
    }
}

.devient {
    display: flex;
    justify-content: center;
    width: auto;
    font-family: neulis-cursive, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}


/* ============================================================
   5. FOOTER
   ============================================================ */

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* -- Ligne 1 : sous-titre + icônes sociales -- */




.footer-1 div {
    padding: 5px;
}

.sous-titre {
    text-align: center;
    font-family: neulis-cursive, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}
.social-icons{
    display: inline-block;
    vertical-align: middle;
}

/* -- Ligne 2 : coordonnées -- */

.footer-2,
.footer-2 a {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 980px) {
    .desktop { display: none; }
    .mobile  { display: block; }
}

/*
 ============================================================
   6. ICÔNES SOCIALES
   ============================================================ */


.social-icon:hover {
    border-color: var(--white);
    background: var(--white-15);
}
a {
    text-decoration: none;
}