:root {
    --primary-color: #003366; 
    --accent-color: #F4A261;
    --white-color: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    background-color: #fff;
}

.header {
    background: white;
    position: fixed;
    top: 0; width: 100%; height: 80px;
    display: flex; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar { display: flex; justify-content: space-between; width: 100%; padding: 0 5%; align-items: center; }
.logo-img { height: 50px; }
.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-link { text-decoration: none; color: var(--primary-color); font-weight: 600; }

.btn-lang {
    background: var(--primary-color); color: white;
    border: none; padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; cursor: pointer;
}

.hero {
    height: 87vh;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('ponchette.jpg') no-repeat center center/cover;
    color: white;
    padding: 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Your black fade */
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Your border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
    display: block;
    width: 100%;
    /* This height covers exactly two lines of text */
    min-height: 3.2em; 
}

/* THE JUMP FIX: Forces the address to always occupy the same height */
.address-line {
    display: inline-block;
    min-height: 1.6em; 
    width: 100%;
    /* Uses a standard font immediately so it doesn't shift later */
    font-family: Arial, sans-serif; 
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 300;
}

.map-section {
    padding: 4rem 10% 0 10%; /* Matches your other sections */
    text-align: center;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden; /* Rounds the corners of the map */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block; /* Removes bottom whitespace */
}

.rooms-policy {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid var(--accent-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    margin-top: 2rem;
}

.whatsapp-link { 
    color: #25D366; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.2rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    justify-content: center; 
}

/* Form styling to match your brand colors */
.contact-form {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Container for both buttons */
.booking-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Ensures they stack on mobile */
    margin-top: 20px;
}

/* Base button style */
.btn-booking {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
    display: inline-block;
}

/* WhatsApp / Direct Button - Highlighted */
.btn-direct {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
}

.btn-direct:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* Booking.com Button - Secondary */
.btn-external {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-external:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-title { font-size: 2.0rem; }
.btn-primary { background: var(--accent-color); color: white; padding: 12px 30px; border-radius: 50px; border: none; cursor: pointer; margin-top: 20px; font-weight: bold; }

.rooms-section, .contact-section { padding: 4rem 10%; text-align: center; }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* force 2 per row */
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .rooms-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
    .hero {
    height: auto;
    min-height: 80vh;
    align-items: flex-start;
    }
    .nav-menu {
    gap: 0.75rem;
    font-size: 0.85rem;
  }
    .hero-content {
    margin: 0 8px;
    box-sizing: border-box;
}

}

.room-card { padding: 2rem; border: 1px solid #eee; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.whatsapp-link { color: #25D366; text-decoration: none; font-weight: bold; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; justify-content: center; }