/* ═══════════════════════════════════════════════
   LAST NIGHT – style.css
   ═══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
    /* Couleurs */
    --c-dark:         #070707;
    --c-dark-hero:    #2b2b2b;       /* fallback hero si image absente   */
    --c-cream:        #e5e0d3;       /* fond section basse               */
    --c-cream-dark:   #cdc7b8;       /* bordures / séparateurs           */
    --c-green:        #27423d;       /* vert mousse accent               */
    --c-green-hover:  #5da583;
    --c-text-dark:    #2a2520;
    --c-text-muted:   #5c564e;
    --c-text-light:   #f0ece2;

    /* Typographies */
    --font-body:    "Englebert", regular;

    /* Misc */
    --radius:  3px;
    --max-w:   1050px;
}

.east-sea-dokdo-regular {
  font-family: "East Sea Dokdo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.videosection {
    margin: 40px 0;
}

h1{
    font-family: "East Sea Dokdo", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    text-shadow: 10px 3px 8px var(--c-green);
}
.preview{
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0px 0px 100px var(--c-green-hover);
}
/* ── Reset minimal ─────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; }
ul   { list-style: none; }

body {
    font-family: var(--font-body);
    background: var(--c-dark);
    color: var(--c-text-light);
    -webkit-font-smoothing: antialiased;
}


/* ═══════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 0;
    background-color: var(--c-green);
    height: 100px;
}

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

/* Logo nav */
.nav__logo img {
    height: 54px;
    width: auto;
}

/* Liens */
.nav__links {
    display: flex;
    gap: 28px;
}

.nav__links a {
    font-family: "East Sea Dokdo", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-text-light);
    transition: color .2s ease;
}

.nav__links a:hover {
    color: var(--c-green-hover);
}

/* Avatar */
.nav__avatar img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-text-light);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 740px;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    /* ↓ Remplacez hero-bg.jpg par votre photo */
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    background-color: var(--c-dark-hero);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/imagefondaccueil.jpg');
    background-size: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 56px;
    width: 100%;
}

/* Grand logo hero */
.hero__logo {
    width:  500px;
    opacity: 0.6;
}

/* Boutons hero */
.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}


/* ── Boutons (partagés) ─────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

/* Contour blanc */
.btn--outline {
    color: var(--c-text-light);
    background-image: url('../images/btnbg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.btn--outline:hover {
    color: var(--c-green);
}

/* Plein vert */
.btn--solid {
    margin: auto;
    color: var(--c-text-light);
    background-image: url('../images/btnbg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.btn--solid:hover {
    color: var(--c-green);
}


/* ═══════════════════════════════════════════════
   BANDEAU TAGLINE
   ═══════════════════════════════════════════════ */
.tagline-band {
    background: var(--c-dark);
    border-top:    2px solid var(--c-green);
    border-bottom: 2px solid var(--c-green);
    padding: 12px 24px;
    text-align: center;
}

.tagline-band__text {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--c-green);
}


/* ═══════════════════════════════════════════════
   SECTION CONCEPT
   ═══════════════════════════════════════════════ */
.concept {
    background: var(--c-dark);
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Paragraphe */
.concept__body {
    max-width: 680px;
    width: 100%;
}

.concept__body p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.80;
    color: var(--c-text-light);
    text-align: justify;
}
.concept__body li {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.80;
    color: var(--c-text-light);
    text-align: justify;
}


/* ── Features (icônes × 3) ─────────────────── */
.features {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}

.features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}

.features__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features__icon img {
    width: 100%;
    height: auto;
    /* Icônes rendues en noir pour s'harmoniser avec le fond crème */
    filter: brightness(0) saturate(100%);
}

.features__label {
    font-family: var(--font-display);
    font-size: 1.10rem;
    letter-spacing: 0.06em;
    color: var(--c-text-light);
    line-height: 1.1;
}

.features__desc {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}


/* ── CTA bas ───────────────────────────────── */
.concept__cta {
    margin-top: 4px;
}

.concept__cta .btn--solid {
    padding: 13px 34px;
    font-size: 0.82rem;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 580px) {

    .nav__links { gap: 14px; }
    .nav__links a { font-size: 0.68rem; }

    .hero { min-height: 420px; }
    .hero__logo { width: 190px; }

    .hero__buttons { flex-direction: column; align-items: center; }

    .features { gap: 28px; }
}
