/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-color: #1a4d8c;
    --secondary-color: #f1c40f;
    --accent-color: #e74c3c;
    --gradient-start: #ff6b6b;
    --gradient-end: #4ecdc4;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
}

.logo-img {
    height: 35px;
    width: auto;
    margin-right: 12px;
    border-radius: 14%;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h2 {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO / CARROUSEL ===== */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active img {
    animation: zoomSlide 8s ease forwards;
}

@keyframes zoomSlide {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

/* Contenu texte hero */
.hero-content {
    position: relative;
    z-index: 15;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
    font-weight: 700;
}

.hero-content p:first-of-type {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, rgba(241,196,15,0.2), rgba(241,196,15,0));
    display: inline-block;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.hero-content p:last-of-type {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #faf9f9, #fcfbfa, #f6f8f7, #fdfdfd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fadeInUp 1s ease 0.3s both, shine 3s infinite;
}

@keyframes shine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

/* Slide caption */
.slide-caption {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease;
}

.slide-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.slide-caption p {
    font-size: 0.9rem;
    margin: 0;
}

/* Boutons navigation carrousel */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--secondary-color);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-text { animation: fadeInDown 1s ease; }
.animate-text-delay { animation: fadeInUp 1s ease 0.3s both; }
.animate-text-delay2 { animation: fadeIn 1s ease 0.6s both; }

/* Boutons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Hotels Section */
.hotels-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.hotels-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

.hotel-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hotel-card:nth-child(1) { animation-delay: 0.2s; }
.hotel-card:nth-child(2) { animation-delay: 0.4s; }

.hotel-image {
    height: 250px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.hotel-card:hover .hotel-image {
    transform: scale(1.05);
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.location {
    color: #7f8c8d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-mini {
    background: #f5f5f5;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 0.8rem 0;
    font-size: 0.9rem;
}

.contact-mini p {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-mini i {
    color: var(--secondary-color);
    width: 20px;
}

.hotel-features {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature {
    background: var(--light-bg);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.book-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.book-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}

/* ===== SECTION RÉSERVATION ===== */
.reservation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.reservation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.reservation-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.reservation-form-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.reservation-form-container h3 i { color: var(--secondary-color); }

.reservation-form h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reservation-form h4 i { color: var(--secondary-color); }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group { margin-bottom: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.reservation-summary {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.reservation-summary h4 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.reservation-summary h4 i { color: var(--secondary-color); }

.summary-details { display: grid; gap: 0.8rem; }

.summary-details p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.summary-details p:last-child { border-bottom: none; }
.summary-details strong { color: var(--secondary-color); }
.summary-details span { font-weight: 500; }

.total-price {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem;
    border-radius: 10px;
}

#summary-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-label:hover { background: rgba(241, 196, 15, 0.1); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }

.terms-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover { text-decoration: underline; }

#reservation-submit {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #e0b20b);
    color: var(--text-color);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#reservation-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3);
}

#reservation-submit i { font-size: 1.2rem; }

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: fadeInRight 0.6s ease;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.info-card h4 i { color: var(--secondary-color); }
.info-card ul { list-style: none; }

.info-card ul li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card ul li i { color: var(--secondary-color); width: 20px; }

.phone-number {
    font-weight: 500;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SECTION CONTACT ===== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info { padding: 2rem; }

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.contact-details { margin-top: 2rem; }

.contact-details p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-details p:hover i {
    background: var(--secondary-color);
    color: var(--text-color);
    transform: rotate(360deg);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(360deg);
    color: var(--text-color);
}

.quick-contact {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.quick-contact h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.quick-phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.phone-box {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.phone-box:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--text-color);
}

.phone-box i { font-size: 1.2rem; }

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-logo-img:hover { transform: scale(1.05); }

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section ul { list-style: none; }

.footer-section ul li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i { color: var(--secondary-color); width: 20px; }

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

/* Modal pour les prix */
.price-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.price-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--secondary-color);
    background: rgba(0,0,0,0.05);
}

.price-modal h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-right: 30px;
    font-size: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.price-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.price-table tr:hover td { background: rgba(241, 196, 15, 0.05); }

.price-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-value {
    font-weight: bold;
    color: #e67e22;
    white-space: nowrap;
    font-size: 1.1rem;
}

.price-table td:last-child { color: #666; line-height: 1.4; }

.book-now-btn {
    background: linear-gradient(135deg, var(--secondary-color), #e0b20b);
    color: var(--text-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 1rem;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

/* Flatpickr */
.flatpickr-calendar {
    font-family: 'Segoe UI', sans-serif;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.flatpickr-day.selected {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
}

.flatpickr-day.today { border-color: var(--primary-color) !important; }
.flatpickr-day:hover { background: rgba(241, 196, 15, 0.2) !important; }

/* Form messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SECTION GALERIE ===== */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover { background: var(--primary-color); color: white; }

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    opacity: 1;
    transition: var(--transition);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeIn 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 { font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--secondary-color); }
.gallery-overlay p { font-size: 0.9rem; margin-bottom: 0.5rem; opacity: 0.9; }

.gallery-zoom {
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.gallery-zoom:hover { background: white; transform: scale(1.1); }
.gallery-zoom i { font-size: 1.2rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.show { display: flex; justify-content: center; align-items: center; }

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 3001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.lightbox-close:hover { color: var(--secondary-color); background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--secondary-color); color: var(--text-color); }

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Prix par nuit */
.price-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--secondary-color);
    animation: fadeIn 0.3s ease;
}

.price-info i { color: var(--secondary-color); font-size: 1.5rem; }
.price-info span { font-size: 1.1rem; color: var(--text-color); }
.price-info strong { color: #e67e22; font-size: 1.3rem; margin-left: 0.5rem; }
#summary-room-type { font-weight: 500; color: var(--primary-color); }

/* Boutons admin */
.btn-admin {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-admin:hover { background: #2980b9; transform: translateY(-2px); }
.btn-avis { background: #9b59b6; }
.btn-avis:hover { background: #8e44ad; }

/* Adaptation images globale */
img { max-width: 100%; height: auto; }

/* ===== RESPONSIVE TABLETTE (max 768px) ===== */
@media (max-width: 768px) {

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero carrousel - FIX PRINCIPAL */
    .hero {
        height: 100dvh;
        margin-top: 60px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slideshow-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active { opacity: 1; }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none !important;
        animation: none !important;
    }

.hero-content {
    position: relative;
    z-index: 15;
    width: 90%;
    padding: 0 15px;
    text-align: center;
    margin-top: -15vh;
}

    .hero-content h1 { font-size: 2rem !important; line-height: 1.2; }
    .hero-content p:first-of-type { font-size: 1rem !important; padding: 0.3rem 1rem !important; }
    .hero-content p:last-of-type { font-size: 1.8rem !important; letter-spacing: 1px !important; }

    /* Boutons carrousel */
    .prev-slide, .next-slide { width: 35px; height: 35px; font-size: 1.2rem; }
    .slide-caption { bottom: 60px; padding: 0.5rem 1rem; }
    .slide-caption h3 { font-size: 1rem; }

    /* Grilles */
    .hotels-grid,
    .gallery-grid,
    .reservation-container,
    .contact-container,
    .maps-container { grid-template-columns: 1fr !important; }

    .stats { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .form-row { grid-template-columns: 1fr !important; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }

    .contact-container { gap: 2rem; }
    .quick-phone { grid-template-columns: 1fr; }
    .contact-info { text-align: center; }
    .contact-info h3::after { left: 50%; transform: translateX(-50%); }
    .contact-details p { justify-content: center; }
    .social-links { justify-content: center; }

    .hotel-image { height: 200px; }
    .about-image { height: 250px; }

    .gallery-filters { gap: 0.5rem; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; white-space: nowrap; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }

    .reservation-summary .summary-details p { flex-direction: column !important; align-items: flex-start !important; gap: 0.3rem !important; }
    .price-info { flex-direction: column; text-align: center; }

    .price-modal-content { padding: 1rem; max-width: 95%; max-height: 85vh; }
    .price-table th, .price-table td { padding: 0.5rem; font-size: 0.9rem; }
    .price-table td:first-child { white-space: normal; }
    .price-value { white-space: normal; }
    .close-modal { top: 5px; right: 10px; }

    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
    .lightbox-close { top: 10px; right: 15px; font-size: 2rem; width: 40px; height: 40px; }
}

/* ===== RESPONSIVE MOBILE (max 480px) ===== */
@media (max-width: 480px) {

    .hero-content h1 { font-size: 1.7rem !important; }
    .hero-content p:first-of-type { font-size: 0.9rem !important; }
    .hero-content p:last-of-type { font-size: 1.5rem !important; }

    .logo h2 { font-size: 1rem !important; white-space: nowrap; }
    .logo-img { height: 28px; }
    .footer-logo-img { height: 25px; }

    .section-title h2 { font-size: 2rem; }
    .reservation-form-container { padding: 1rem; }
    .hotel-image { height: 180px; }

    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid { grid-template-columns: 1fr; }
    .lightbox-caption { font-size: 1rem; }
}