/* Global Styles */
:root {
    --primary-color: #3c691a;
    --primary-dark: #556b2f;
    --secondary-color: #8b4513;
    --accent-color: #d2b48c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --orange-color: #ff914d;
    --blue-color: #1c2652;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn2 {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d6861c;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn:hover {
    background-color: var(--blue-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--blue-color);
    color: white;
}

.btn-secondary svg {
    margin-right: 8px;
    vertical-align: middle;
}
#btn{
    display:none;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo{width:20%}

.logo h1 {
    font-family: "Protest Riot", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* font-size: 1.5rem;
    font-weight: 700; */
    color: var(--primary-color);
    font-size:1rem
}

.logo a:hover {
    color: var(--blue-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    height:50px;
    align-items: center;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
#container1{max-height:80vh}
.hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/camping_index.JPG') no-repeat bottom /cover; */
    color: white;
    padding: 150px 0;
    text-align: center;
    position:absolute;
    top:150px;
    left:20%;
    z-index:999;
    width:60%;
    height:auto;
   
}
.slider-nav{
    z-index:99999;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero > .container{
background-color: rgba(0, 0, 0, 0.2);
}
/*Bienvenue */
.bienvenue{
    display: flex;
    justify-content: space-between;
    padding: 6% 10%;
    flex-wrap: wrap;
  }

  #bienvenue-reverse{
    background-color: var(--light-color);
  }
  .titre_bv{
    width: 40%;
    color: #313132;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .titre_bv p {
    text-align: justify;
  }
.image-collage, .image-collage-2 {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(2, auto);  
    gap: 15px;  */
    width: 50%;
}
.button_bv{
    display: flex;
    justify-content: space-around;
}

.animated-image, .animated-image-2 {
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0;
}

.image-collage-2 {
    order: 1;
}

.box2 {
    order: 2;
}

@media screen and (max-width: 1235px){
    /*bienvenue*/
    .titre_bv {
        width: 100%;
    }
    .image-collage {
        width: 100%;
        margin-top: 5%;
    }
    .image-collage-2{
        width: 100%;
        margin-top: 5%;
        order: 2;
    }
    
    .box2 {
        order: 1;
    }
}
@media screen and (max-width: 800px){
    /*bienvenue*/
    .bienvenue {
        padding: 12% 10% 7% 10%;  
      }
      .image-collage{
        display: none;
      }
}

/* gallerie */

/* Features Section */
.features {
    padding: 80px 0;
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    color: var(--primary-color);
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
}

/* Rooms Preview Section */
.rooms-preview {
    padding: 80px 0;
}

.rooms-grid {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-evenly;
    gap: 30px;
}

.room-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.room-card:hover {
    transform: translateY(-10px);
}

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

.room-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
}

.room-card p {
    margin: 0 20px 15px;
    color: var(--gray-color);
}

.room-price {
    margin: 0 20px 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.room-card .btn-secondary {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Activities Preview Section */
.activities-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.activity-content p {
    color: var(--gray-color);
}

.activities-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(107, 142, 35, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.client-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-dark);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/img-footer.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-logo img{
    width: 75%;
    transform: translate(0px, 40px);
}

.footer-carte {
    width: 100%;
    
    margin-top: 0;
    transform: translate(0px, -45px);
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--orange-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li svg {
    margin-right: 10px;
    margin-top: 3px;
    color: var(--orange-color);
}

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

.social-problem{
    display: flex;
    gap: 15px;
    transform: translate(0,-35px);
}


.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons svg {
    color: var(--orange-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/epicerie.webp') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}
.page-header23 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/alentours.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header23 h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header23 p {
    font-size: 1.2rem;
}
.page-header3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/camping_index.JPG') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header3 h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header3 p {
    font-size: 1.2rem;
}
#container2{height:650px}
/* Rooms Page Styles */
.rooms {
    padding: 80px 0;
}
.page-header2{
    position:absolute;
    width:50%;
    left:25%;
    top:300px;
    z-index:9999;
    background-color: rgba(0, 0, 0, 0.3);
    padding:1px;
    color:white;
    text-align:center
}
.room-item {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    border-block-end: 1px solid #313132;
}

.room-item:last-child {
    margin-bottom: 0;
}

.room-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.room-item.reverse .room-details {
    direction: ltr;
}

.room-image {
    position: relative;
}

.room-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.room-price-tag {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
}

.room-details h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.room-capacity {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-style: italic;
}

.room-details p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.room-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.room-amenities {
    margin-bottom: 25px;
}

.room-amenities li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: var(--gray-color);
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.room-info {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.info-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--gray-color);
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.booking-info {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.booking-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.booking-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.booking-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--gray-color);
}

.booking-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.booking-cta {
    display: flex;
    justify-content: center;
}

.cta-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 400px;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.cta-box .btn-secondary {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-box .btn {
    width: 100%;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

#contact-footer {
    padding: 0;
}

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

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray-color);
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.form-info {
    padding: 50px;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-info p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-form {
    padding: 50px;
    background-color: var(--primary-color);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-submit {
    margin-top: 30px;
}

.form-submit .btn {
    background-color: white;
    color: var(--primary-color);
    width: 100%;
}

.form-submit .btn:hover {
    background-color: var(--light-color);
}

.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.directions h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.direction-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direction-icon svg {
    color: var(--primary-color);
    width: 25px;
    height: 25px;
}

.direction-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.direction-content p {
    color: var(--gray-color);
}

.faq {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .room-item,
    .room-item.reverse,
    .booking-grid,
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-item.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo{
        justify-items: center;
    }
    .footer-logo img{
        width: auto;
        transform: translate(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgb(18, 16, 16);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    #btn{
        display: flex;
        align-items: center;
    }
    .btn2{
            padding: 5px 30px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .footer-logo img{
        transform: translate(0);
    }
    .footer-carte{
        width: 75%;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .hero{
        padding: 15px 0;
            top: 3rem
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .form-info,
    .contact-form {
        padding: 30px;
    }
}

/* Additional styles for Services and Activities pages */

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-intro-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.included-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    color: var(--primary-color);
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-price {
    margin-top: auto;
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

.service-price p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dining-services {
    padding: 80px 0;
}

.dining-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.dining-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dining-item.reverse {
    direction: rtl;
}

.dining-item.reverse .dining-details {
    direction: ltr;
}

.dining-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.dining-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.dining-details p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.dining-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px dashed var(--light-gray);
    border-bottom: 1px dashed var(--light-gray);
}

.dining-note {
    font-style: italic;
    font-size: 0.9rem;
}

.additional-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.wellness-services {
    padding: 80px 0;
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wellness-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.wellness-details p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.wellness-services-list {
    margin: 30px 0;
}

.wellness-service-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.wellness-service-item:last-child {
    border-bottom: none;
}

.wellness-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.wellness-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.wellness-note {
    font-style: italic;
    margin-bottom: 20px;
}

.seasonal-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.seasonal-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.seasonal-card:hover {
    transform: translateY(-10px);
}

.seasonal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seasonal-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.seasonal-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.seasonal-card ul {
    padding-left: 20px;
}

.seasonal-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    color: var(--gray-color);
    list-style-type: disc;
}

.service-testimonials {
    padding: 80px 0;
}

/* Activities Page Styles */
.activities-intro {
    padding: 80px 0;
}

.activities-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.activities-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.activities-intro-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.outdoor-activities {
    padding: 80px 0;
    background-color: var(--light-color);
}

.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.activity-item.reverse {
    direction: rtl;
}

.activity-item.reverse .activity-details {
    direction: ltr;
}

.activity-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.activity-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.activity-details p {
    margin-bottom: 15px;
    color: var(--gray-color);
    text-align: justify;
}

.activity-details h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.activity-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.activity-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    color: var(--gray-color);
    list-style-type: disc;
}

.cultural-activities {
    padding: 80px 0;
}

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

.cultural-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cultural-card:hover {
    transform: translateY(-10px);
}

.cultural-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.button-alentours{
    text-align: center;
    padding: 2%;
}

.cultural-content {
    padding: 20px;
}

.cultural-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cultural-content p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.cultural-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

#gastronomy {
    padding: 80px 0;
}

.gastronomy {
    background-color: var(--light-color);
}

.gastronomy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gastronomy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.gastronomy-details p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.gastronomy-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.gastronomy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.gastronomy-item ul {
    padding-left: 20px;
}

.gastronomy-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
    color: var(--gray-color);
    list-style-type: disc;
}

.gastronomy-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.gastronomy-places {
    padding-left: 20px;
}

.gastronomy-places li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    color: var(--gray-color);
    list-style-type: disc;
}

.events {
    padding: 80px 0;
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.event-season h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.event-list {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    min-width: 80px;
    font-weight: 600;
    color: var(--primary-color);
}

.event-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-info p {
    color: var(--gray-color);
}

.itineraries {
    padding: 80px 0;
    background-color: var(--light-color);
}

.itineraries-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-right: none;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-btn:last-child {
    border-right: 1px solid var(--light-gray);
    border-radius: 0 5px 5px 0;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-pane {
    display: none;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.itinerary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.itinerary-details p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.itinerary-steps {
    margin: 20px 0;
    padding-left: 20px;
}

.itinerary-steps li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    color: var(--gray-color);
    list-style-type: disc;
}

.itinerary-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.activity-map {
    padding: 80px 0;
}

.map-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-icon.hiking {
    background-color: #ff6b6b;
}

.legend-icon.cycling {
    background-color: #4ecdc4;
}

.legend-icon.water {
    background-color: #1a85ff;
}

.legend-icon.cultural {
    background-color: #ffd166;
}

.legend-icon.gastronomy {
    background-color: #6b4e71;
}

/* Responsive Styles for Services and Activities */
@media (max-width: 992px) {
    .dining-item,
    .dining-item.reverse,
    .wellness-content,
    .activity-item,
    .activity-item.reverse,
    .gastronomy-content,
    .itinerary-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dining-item.reverse,
    .activity-item.reverse {
        direction: ltr;
    }

    .gastronomy-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 0 40%;
        border: 1px solid var(--light-gray);
        margin: 2px;
        border-radius: 5px;
    }

    .tab-btn:first-child,
    .tab-btn:last-child {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .tab-btn {
        flex: 1 0 100%;
    }
}




/* Styles spécifiques pour le Blog et les Articles */

/* Blog Hero Section */
.blog-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Content */
.blog-content {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-read-more:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Article Page Styles */
.article-hero {
    position: relative;
    height: 500px;
    color: white;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.article-hero-content {
    position: absolute;
    bottom: 50px;
    width: 100%;
    padding: 0 20px;
}

.article-meta {
    margin-bottom: 15px;
}

.article-date {
    font-size: 1rem;
    opacity: 0.9;
}

.article-title {
    font-size: 2.5rem;
    max-width: 800px;
    line-height: 1.3;
}

.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body img {
    margin: 30px 0;
    border-radius: 5px;
}

.article-body h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-body h3 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--primary-dark);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Error Message */
.error-message {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    color: #e53e3e;
}

.error-message h2 {
    margin-bottom: 15px;
}

/* Responsive Styles pour Blog et Article */
@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .article-hero {
        height: 400px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-hero {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
}
