/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c5f5f;
}

.social-link {
    color: #2c5f5f;
    font-size: 1.2rem;
    margin: 0 20px;
}

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

nav a {
    text-decoration: none;
    color: #2c5f5f;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #4a9999;
}

.lang-selector {
    font-weight: 500;
}

.lang-selector a {
    color: #2c5f5f;
    text-decoration: none;
}

/* Hero Slider */
.hero {
    margin-top: 80px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 95, 95, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    text-align: center;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav button.active {
    background: #2c5f5f;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: white;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f5f;
    margin-bottom: 20px;
}

.welcome-text p {
    margin-bottom: 20px;
    color: #555;
}

.btn {
    display: inline-block;
    background: #2c5f5f;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background: #4a9999;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery Full Width */
.gallery {
    padding: 0;
    background: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Activities */
.activities {
    padding: 160px 0;
    background: white;
}

.activities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f5f;
    text-align: center;
    margin-bottom: 50px;
}

.activities-content {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.activities-column {
    flex: 1;
    max-width: 400px;
}

.activities-column h3 {
    font-size: 1.5rem;
    color: #2c5f5f;
    margin-bottom: 20px;
    text-align: center;
}

.activities-column ul {
    list-style: none;
}

.activities-column li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activities-column i {
    color: #4a9999;
    font-size: 1.1rem;
}
/* Activities Section Styles */
.activities-section {
  padding: 60px 0;
  background-color: #f9f7f4;
  font-family: 'Open Sans', sans-serif;
}

.activities-block {
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #5a7a6b;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-column {
  padding: 0 15px;
}

.activity-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-list li {
  color: #333;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.activity-list li:before {
  content: "•";
  color: #5a7a6b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.activities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.activity-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.activity-card h3 {
  color: #5a7a6b;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.activity-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .activities-grid,
  .activities-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .activity-column,
  .activity-card {
    padding: 20px 10px;
  }
}

/* Background image effect */
.activities-section {
  position: relative;
  background-image: url('your-background-image.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.activities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 247, 244, 0.9);
  z-index: -1;
}


/* Rooms Carousel */
.rooms {
    padding: 80px 0;
    background: #f5f5f5;
}

.rooms h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f5f;
    text-align: center;
    margin-bottom: 50px;
}

.rooms-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.room-slide {
    display: none;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-slide.active {
    display: block;
}

.room-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c5f5f;
    margin-bottom: 15px;
}

.room-info p {
    color: #555;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-feature {
    background: #e8f5f5;
    color: #2c5f5f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-nav button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #2c5f5f;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-nav button.active {
    background: #2c5f5f;
    color: white;
}

/* Gallery Two (Aux alentours) */
.gallery-two {
    padding: 80px 0;
    background: white;
}

.gallery-two h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f5f;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-two p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.gallery-two-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-two-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-two-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-two-item:hover img {
    transform: scale(1.05);
}

.gallery-two-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 95, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
}

/* Tarification */
.tarification {
    padding: 80px 0;
    background: #f5f5f5;
}

.tarification h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f5f;
    margin-bottom: 20px;
    text-align: center;
}

.tarification p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-header {
    background: #2c5f5f;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.pricing-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-period {
    flex: 1;
    padding: 15px;
    background: #f9f9f9;
    font-weight: 500;
    text-align: center;
}

.pricing-price {
    flex: 1;
    padding: 15px;
    text-align: center;
}

.pricing-notes {
    padding: 20px;
    background: #f9f9f9;
    font-style: italic;
    text-align: center;
}



/* Footer */
footer {
    background: #2c5f5f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #4a9999;
}

.copyright {
    width: 100%;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .welcome-content {
        flex-direction: column;
    }

    .activities-content {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Galerie Masonry */
.gallery {
    padding: 0;
    background: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tall items for masonry effect */
.gallery-item.tall {
    grid-row-end: span 2;
}


/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 150px;
    }
}

/* FOOTER STYLES - Version épurée */
.gite-footer {
    background-color: #f8f9fa; /* Couleur neutre - à adapter à votre site */
    color: #333;
    padding: 50px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    padding: 0 20px 30px;
}

.footer-main {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 30px;
}

.footer-images {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c5f5f; /* Couleur titre - à adapter */
}

.footer-logo h3 span {
    color: #2c5f5f; /* Couleur accent - à adapter */
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item i {
    color: #2c5f5f; /* Couleur icônes - à adapter */
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #2c5f5f; /* Couleur survol - à adapter */
}

.contact-item p {
    margin: 5px 0;
    line-height: 1.5;
}

.contact-item strong {
    color: #2c5f5f; /* Couleur texte fort - à adapter */
}

/* Style pour les images */
.footer-image-link {
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.footer-image-link:hover {
    transform: translateY(-5px);
}

.footer-external-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background-color: #fff;
    padding: 15px;
    transition: all 0.3s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.footer-image-link:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
}

/* Footer bottom */
.footer-bottom {
    background-color: #e9ecef; /* Couleur fond - à adapter */
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main, .footer-images {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 20px 30px;
    }

    .footer-images {
        margin-top: 30px;
        padding-left: 0;
    }

    .footer-external-img {
        height: 120px;
    }
}


/* Social icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #d4a574;
    transform: translateY(-3px);
}

/* Copyright section */
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payment i {
    font-size: 1.5rem;
    color: #ccc;
}

.footer-payment span {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-images {
        flex-direction: row;
    }

    .footer-image {
        flex: 1;
    }
}

/* Rooms Carousel */
.rooms {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.rooms h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #2c5f5f;
}

.rooms-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.room-slide {
    display: none;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-slide.active {
    display: block;
}

.room-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    color: #2c5f5f;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.room-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.room-feature {
    background-color: #e9f7fe;
    color: #2c5f5f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-nav button {
    padding: 10px 20px;
    border: none;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.carousel-nav button:hover {
    background-color: #dee2e6;
}

.carousel-nav button.active {
    background-color: #2c5f5f;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .room-info h3 {
        font-size: 1.5rem;
    }

    .room-image img {
        height: 250px;
    }

    .carousel-nav {
        gap: 5px;
    }

    .carousel-nav button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    #formMessage {
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
        display: none;
        text-align: center;
        font-weight: bold;
    }
    .success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

}

/* form */
/* ===== FORMULAIRE DE CONTACT ===== */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

#contactForm div {
    margin-bottom: 15px;
}

#contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm input[type="date"],
#contactForm input[type="number"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#contactForm textarea {
    height: 120px;
    resize: vertical;
}

#contactForm button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

#contactForm button:hover {
    background-color: #45a049;
}

#contactForm button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.date-range {
    display: flex;
    gap: 10px;
}

.date-range input {
    flex: 1;
}

#formMessage {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
    text-align: center;
    font-weight: bold;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
    .date-range {
        flex-direction: column;
        gap: 0;
    }
}

