* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary: #3677c0;
    --primary2: #375a81;
    --secondary: #d58a3e;
    --accent: #ffd700;
    --dark: #333;
    --light: #f8f9fa;
    --white: #fff;
    --accent-color: #ffd700;
    --primary-color: #3677c0;
    --secondary-color: #d58a3e;
    --dark-color: #776262;
    --light-color: #f8f9fa;
    --white-color: #fff;
}

body {
    color: var(--dark);
    line-height: 1.6;
    max-width: 96%;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: "Rouge Script", cursive;
    font-weight: 560;
    font-style: normal;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    font-size: 96px;
    margin-top: 180px;
    color: gold;
}
.hero-content > p {
    font-size: 76px;
    padding: 20px;
    font-family: "Great Vibes", cursive;

}
/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    max-height: 80px;
    max-width: 96%;
    margin: 0 auto;
    padding-right: 90px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.book-now {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.book-now:hover {
    background-color: var(--secondary);
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

/* About Section */
.about {
    background-color: var(--light);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(32, 17, 17, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

/* Rooms Section */
.rooms-section h2 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "Satisfy", cursive;
    color: gold;
    font-size: 56px;
}

.rooms-section {
    padding: 4rem 0;
    background-color: var(--light-color);
    position: relative;
   
}

.room-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Style pour la vidéo */
.room-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.room-video {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

/* Style pour le contenu principal */


.room-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
}

/* Style pour l'album photo */
.room-album {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-photo-container {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-photo:hover {
    transform: scale(1.05);
}

.thumbnails-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnailroom {
    flex: 1 1 150px;
    min-width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnailroom:hover {
    transform: scale(1.05);
}

/* Style pour les amenities */
.amenities-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    margin-top: 40px;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.amenities-list i {
    color: var(--accent-color);
}

/* Style pour le CTA */
.booking-cta {
    text-align: center;
    margin-top: 2rem;
}

.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-button:hover {
    background-color: var(--primary2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .room-main-content {
        grid-template-columns: 1fr;
    }
    
    .main-photo-container {
        height: 400px;
    }
    
    .thumbnails-container {
        justify-content: center;
    }
    

}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(590px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: rgb(214, 213, 213);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(36, 35, 35, 0.5);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 500px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.room-info p {
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
}

.room-features i {
    color: var(--accent-color);
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.room-price span {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.book-now-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: var(--accent-color);
}

.view-all-rooms {
    text-align: center;
    margin-top: 40px;
}

.view-all-rooms .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Deal Section */
.best-deal {
    background-color: var(--primary2);
    color: var(--white);
    text-align: center;
}

.best-deal .section-title h2 {
    color: var(--white);
}

.deal-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.deal-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent);
}

.deal-description {
    margin-bottom: 30px;
    font-size: 18px;
}

.deal-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 30px;
}

.deal-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.deal-button:hover {
    background-color: var(--accent);
    color: var(--dark);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(54, 119, 192, 0.1);
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--secondary);
}

.rating {
    color: var(--accent);
    margin-top: 10px;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 95%;
    margin: 0 auto;
}

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.activity-image {
    height: 500px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-info {
    padding: 20px;
    background-color: var(--white);
}

.activity-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.activity-info p {
    margin-bottom: 15px;
}

.activity-distance {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    background-image: url('../pics/terrasse_HOUKAH/TamazineCaféterrasseHOUKAH0461.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.newsletter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.newsletter .container {
    position: relative;
    z-index: 2;
}

.newsletter .section-title h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.5);
    color: white;
    transition: background-color 0.3s;
    width: 550px;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background: var(--accent-dark);
}

/* Footer */


footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 20 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    
}

.footer-column h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 90px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .deal-title {
        font-size: 26px;
    }
    
    .deal-content {
        padding: 20px;
    }
}

/* rooms */

 /* Photo Gallery */
 .gallery {
    position: relative;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 32px;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
}

.thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 15px;
    background: #1a365d;
}

.thumbnail {
    width: 100px;
    height: 70px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: #e6b980;
}

.thumbnail.active {
    border-color: #e6b980;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Room Description */
.room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.description {
    flex: 1;
    min-width: 300px;
}

.description h2 {
    color: #1a365d;
    margin-bottom: 15px;
}

.description p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Amenities */
.amenities {
    flex: 1;
    min-width: 300px;
    background-color: #f0f5fa;
    padding: 20px;
    border-radius: 8px;
}

.amenities h2 {
    color: #1a365d;
    margin-bottom: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a365d;
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

/* Booking */
.booking {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f5fa;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 15px;
}

.book-btn {
    background-color: #e6b980;
    color: #1a365d;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.book-btn:hover {
    background-color: #d9a669;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .room-details {
        flex-direction: column;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-wrap: wrap;
    }
}

/* Rooms */

/* Styles spécifiques pour la page des chambres */
.rooms-section {
    padding: 80px 0;
    background-color: var(--light);
}


.rooms-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.room-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.room-card .card-body {
    padding: 25px;
    background: var(--dark);
}

.room-card h5 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.room-card .card-text {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.room-card .card-text strong {
    color: var(--primary2);
    display: block;
    margin-bottom: 5px;
}

.room-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.room-card .btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.room-card .btn-primary:hover {
    background-color: var(--primary2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .room-card {
        margin-bottom: 25px;
    }
    
    .room-card .btn-primary {
        width: 100%;
        padding: 12px;
    }
}


/* room selected */
.room-card.selected {
    border: 5px solid var(--accent-color);
    box-shadow: 0 8px 18px rgba(218, 165, 32, 0.3);
}

/* Suggestions de chambres alternatives */
.alternative-rooms {
    margin: 10px 0;
    padding: 10px;
    background-color: var(--light-color);
    border-radius: 5px;
}

.alternative-rooms li {
    margin: 5px 0;
    padding: 5px;
}

.alternative-rooms a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.alternative-rooms a:hover {
    text-decoration: underline;
}

.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 80%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.alert-danger {
    position: fixed;
    top: 20px;
    left: 50%;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c6cb;
}

.booking-container {
    padding-top: 80px;
}
.booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.rooms-list {
    flex: 1;
    min-width: 300px;
}

.booking-form-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.booking-form {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    width: 500px;
}

.room-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 500px;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-price {
    
    bottom: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
}

.room-details {
    padding: 20px;
}

.room-details h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.room-features span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.room-features i {
    margin-right: 5px;
    color: var(--accent-color);
}



.select-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-button:hover {
    background-color: #3a5a8a;
}

form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

label {
    font-weight: bold;
    color: var(--secondary-color);
}

input, select, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"] {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #c8941c;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.form-required {
    color: #dc3545;
}

footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
    }
    
    .booking-form {
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
    }
}
.rooms-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.room-item {
    margin-bottom: 50px;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.main-room-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.room-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.room-description {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    margin-top: 500px;
    margin-left: 100px;
}


.room-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.thumbnailroom {
    width: 170px;
    height: 100px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin : 8px;
}

.thumbnailroom :hover {
    transform: scale(1.05);
}

.thumbnailroom  img {
   width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    
}

.thumbnailroom .active {
    border: 3px solid #c9c1b8;
    box-shadow: 0 0 15px rgba(201, 193, 184, 0.5);
}

.booking-button-container {
    text-align: center;
    margin: 30px 0;
}

.booking-button {
    display: inline-block;
    background-color: #c9c1b8;
    color: white;
    padding: 15px 60px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
    font-weight: lighter;
    letter-spacing: 1px;
}

.booking-button:hover {
    background-color: #b5ada3;
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .room-content {
        flex-direction: column;
    }
    
    .room-description, .room-thumbnails {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.btn-step2 {
    background-color: #c8941c !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    font-size: 18px !important;
    display: inline-block !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-step2:hover {
    background-color: rgb(255, 219, 15) !important;
    transition: background-color 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Restaurant Section */
.restaurant {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#restaurant-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.restaurant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.restaurant-content {
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 2;
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.restaurant-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-image:hover img {
    transform: scale(1.05);
}

.restaurant-info {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-info h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 28px;
}

.restaurant-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.restaurant-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.highlight h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 16px;
}

.highlight p {
    color: var(--gray);
    font-size: 14px;
}

.restaurant-cta {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

/* Parallax Effect */
.parallax-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Style pour la vidéo en arrière-plan */
.room-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 580px;
    z-index: 0;
    overflow: hidden;
}

.room-video {
    width: 100%;
    height: 580px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Style pour le titre centré */
.room-title-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
    background: rgba(22, 21, 21, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(253, 207, 2, 0.26);
}


/* Style pour le contenu principal */
.room-content-container {
    position: relative;
    z-index: 1;
}   

/* Style pour la description */
.description-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.description-card p {
    color: var(--dark-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Style pour les amenities */
.amenities-card {
    background: rgba(57, 147, 250, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 5px 6px 12px rgba(204, 235, 255, 0.8)
}

.amenities-card h3 {
    font-size: 1.5rem;
    color: #403600;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #9bb7e2;
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.amenities-list span {
    color: var(--dark-color);
    font-size: 1rem;
}

/* Style pour l'album photo */
.room-album {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-photo-container {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-photo:hover {
    transform: scale(1.05);
}

.thumbnails-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnailroom {
    flex: 1 1 150px;
    min-width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnailroom:hover {
    transform: scale(1.05);
}

/* Style pour le CTA */
.booking-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-button:hover {
    background-color: var(--primary2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .room-section {
        padding: 1rem;
    }
    
    .room-header {
        height: 300px;
    }
    
  
    
    .main-photo-container {
        height: 400px;
    }
    
    .thumbnails-container {
        justify-content: center;
    }
    
    .description-card,
    .amenities-card,
    .room-album,
    .booking-cta {
        padding: 1rem;
    }
    
    .description-card h3,
    .amenities-card h3 {
        font-size: 1.25rem;
    }
    
    .description-card p {
        font-size: 0.95rem;
    }
    
    .amenities-list i {
        font-size: 1rem;
    }
    
    .amenities-list span {
        font-size: 0.95rem;
    }
}

/* Badge Best Choice incliné */
.best-choice-badge {
    position: absolute;
    top: 33px;
    right: -40px;
    transform: rotate(40deg);
    background-color: #2ecc71;
    color: white;
    padding: 5px 50px;
    font-weight: bold;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Pour la carte de la SUITE DELUXE */
.room-card {
    position: relative;
    overflow: hidden;
}

/* Styles pour les messages */
.message-box {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.warning-message {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}