/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== HTML / BODY ===== */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    padding-top:0;
}

/* ===== UTIL ===== */
.no-scroll {
    overflow: hidden;
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    display: block;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== TITRES ===== */
h1, h2, h3, h4 {
    font-weight: normal;
    color: #cd991c;
    margin-bottom: 1rem;
}

/* ===== PARAGRAPHES ===== */
p {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== SUBTITLE (réutilisable partout) ===== */
.subtitle {
    color: var(--color-primary);
    font-size: var(--fs-md);
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--space-sm);
    position: relative;
}

.subtitle::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 6px;
}

/* ===== BUTTON RESET ===== */
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== INPUT ===== */
input {
    font-family: inherit;
    outline: none;
}

section {
    width: 100%;
}

#embs-carte-front{
    width:100%;
    height:700px;
    border-radius:20px;
}