body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
    font-family: 'Jost', sans-serif;
}

.logo-icon{
    height:50px;
}

.logo-text{
    line-height:1.1;
}

.brand-main{
    font-weight:700;
    color:white;
    font-size:20px;
    letter-spacing:2px;
}

.brand-sub{
    font-size:12px;
    color:white;
    letter-spacing:3px;
}

.red{
    color:#ff0000;
}

/* NAVBAR */
.navbar {
    background-color: #0d1b2a;
}

.navbar .nav-link {
    color: white !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #fddfdf !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 10px; /* espace entre le logo et le texte */
}

.navbar-brand .logo {
    height: 80px; /* ajuste la taille du logo */
    width: auto;
}
/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(13,27,42,0.85), rgba(13,27,42,0.85)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
}

/* GOLD BUTTON */
.btn-gold {
    background-color: #d40406;
    color: white;
    border-radius: 30px;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #fddfdf;
    color: white;
}

/* ABOUT */
.gold {
    color: #d40406;
}

/* SERVICES */
.service-card {
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* FORM */
.form-container {
    max-width: 800px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    background-color: #0d1b2a;
}