:root {
    --primary-color: #1a5663; /* Bleu canard du logo */
    --accent-color: #d4a34d;  /* Doré du logo */
    --text-color: #333;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modification du Body pour occuper tout l'écran */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    
    /* Active le mode colonne flexible sur toute la hauteur */
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

/* Le Header reste en haut */
.main-header {
    padding: 2rem 10% 1rem;
    text-align: center;
    flex-shrink: 0; /* Empêche le header de s'écraser */
}

/* Le Main (Hero) prend tout l'espace disponible au centre */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 10%;
    
    flex-grow: 1; /* Pousse le footer vers le bas */
}

/* Le Footer reste calé en bas */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #eee;
    flex-shrink: 0; /* Empêche le footer de s'écraser */
}

header {
    padding: 2rem 10%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero-content {
    flex: 1;
    padding-right: 5%;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    color: #555;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.visual-image {
	max-width:500px;
	width:100%;
	height:auto !important;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.placeholder-art {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-image {
    max-width: 350px; /* Ajustez la largeur maximale selon la taille de votre logo.png */
    height: auto; /* Conserve les proportions */
    display: block; /* Évite les espaces sous l'image */
    margin: 0 auto; /* Centrage de secours */
}

.logo-container {
    display: inline-block; /* Pour que le conteneur s'adapte à l'image */
}

.placeholder-art::before {
    content: "";
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(50px);
}


footer p {
	padding:0;
	margin:0;
	font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5% 4rem;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .cta-group {
        justify-content: center;
    }
    .logo-image {
        max-width: 180px; /* Logo plus petit sur mobile */
    }
	
	.hero-visual {
		display:block;
	}
}