html {
  font-size: 14px;
  font-family:Montserrat
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #fbfcfd;
}

section {
    padding: 40px 8%;
}

:root {
    --primary-color: #f7d6c8; /* Rose poudré / Pêche doux */
    --secondary-color: #d4e2d4; /* Vert sauge doux */
    --dark-color: #4a4a4a; /* Gris anthracite adouci pour le texte */
    --light-color: #fffaf8; /* Blanc cassé chaleureux */
    --accent-color: #e2a899; /* Terracotta léger pour les boutons */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/font/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/font/Montserrat/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fairplay';
    src: url('/font/Fairplay/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fairplay';
    src: url('/font/Fairplay/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fairplay';
    src: url('/font/Fairplay/PlayfairDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

h2 {
    font-family: Fairplay;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0px;
}

nav
{
    margin:0px;
}
.subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    padding-top: 20px;
    padding-right: 8%;
    padding-bottom: 20px;
    padding-left: 8%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    font-family: Fairplay;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(226, 168, 153);
    background: url('/img/log-alpha.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #FFF;
}

ul.navbar-nav li a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}


.btn-nav {
    background-color: #d4e2d4;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background-color: var(--accent-color);
    color: #ffffff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.hero {
    height: 60vh;
    background-image: url('/img/fond.jpg');
    background-color: rgb(250, 228, 211, 0.8);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-background {
    background-image: url('/img/fond.jpg');
    background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0px;
}

.hero-content h1 {
    font-family: Fairplay;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}

.service-card {
    background-color: rgb(255 255 255);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgb(243 244 246);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

    .service-card h3 {
        font-family: Fairplay;
        font-size: 1.6rem;
        margin-bottom: 15px;
        margin-top: 0px;
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: rgb(226, 168, 153);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #c98e80;
}
