/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Réinitialisation et base */
* {
    margin: 10;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #2a2a2a;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

header h1 {
    color: #ff9800;
    font-size: 2rem;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff9800;
}

/* Sections */
.section {
    padding: 40px 0;
    border-bottom: 1px solid #444;
}

.section h2 {
    color: #ff9800;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.section p {
    margin-bottom: 15px;
}

.chateau-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chateau-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #2a2a2a;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
