/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: 'Montserrat', sans-serif;
    background: #325366;
    color: white;
    line-height: 1.7;
    font-size: 18px;
}

html {
    scroll-behavior: smooth;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.2);
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* HERO */
.hero {
    min-height: 85vh;
    background-image: url("../images/logo.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.2rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid white;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: #34586d;
}

/* PRESENTATION */
.presentation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 10%;
}

.photo img {
    width: 280px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
}

.texte h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    margin-bottom: 15px;
}

.trait {
    width: 80px;
    height: 2px;
    background: #325366;
    margin-bottom: 15px;
}

.texte p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* SERVICES */
.services {
    padding: 60px 10%;
    text-align: center;
}

.services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 260px;
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card p {
    font-size: 1.1rem;
}

/* STORY */
.story {
    padding: 60px 10%;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.story h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    margin-bottom: 20px;
}

.story p {
    font-size: 1.5rem;
    margin: 15px auto;
}

.story span {
    color: #f0b09a;
    font-weight: 600;
}

/* VISION */
.vision {
    padding: 60px 10%;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.vision p {
    font-size: 1.5rem;
    margin: 15px auto;
}

.vision span {
    color: #f0b09a;
    font-weight: 600;
}

.vision h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    margin-top: 25px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    opacity: 0.8;
    font-size: 1rem;
}