/* Paris Enchanté – Clean, Responsive, Accessible Design */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
header {
    background: #003087; /* French blue */
    color: white;
    padding: 1rem;
    text-align: center;
}
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #00205b;
    margin: 0;
    padding: 1rem;
}
nav ul li { margin: 0.5rem 1rem; }
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}
nav ul li a:hover, nav ul li a:focus {
    background: #D4AF37; /* Gold */
}
main { padding: 2rem; max-width: 1200px; margin: 0 auto; }
h1, h2 { font-family: 'Playfair Display', serif; color: #00205b; }
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* Fix: Make hero h2 look like previous hero h1 */
.hero h2 {
    font-size: 4rem;      /* same as old h1 */
    font-weight: 700;
}

/* Grid and cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.card img { width: 100%; height: 200px; object-fit: cover; }
form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
label, input, textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background: #D4AF37;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}
footer {
    background: #00205b;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 2.5rem; }  /* responsive fix for hero h2 */
    nav ul { flex-direction: column; }
}
