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

:root {
    /* Palette de couleurs Restaurant Le Chardenoux */
    --primary-dark: #1a1a1a;          /* Noir élégant */
    --primary-gold: #d4af37;          /* Or classique */
    --primary-cream: #f8f6f0;         /* Crème élégante */
    --secondary-brown: #8b4513;       /* Brun chaud */
    --accent-copper: #b87333;         /* Cuivre */
    --text-dark: #2c2520;             /* Texte principal */
    --text-light: #6b6b6b;            /* Texte secondaire */
    --background-warm: #fefcf7;       /* Fond chaud */
    --border-elegant: #e8e2d5;        /* Bordures délicates */
    --shadow-soft: rgba(44, 37, 32, 0.1);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-warm);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Ensure all body text uses Source Sans Pro */
body, p, span, div, a, button, input, textarea, .nav-link, .hero-btn, .cta-button, .carte-mets-btn {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Specific elements that should use Playfair Display (serif) for elegance */
.hero-title, .hero-year, .au-menu-title, .section-title-journee, .menu-title, .gift-title, .contact-title, .map-title,
.petit-dejeuner-text h3, .gouter-text h2, .gouter-subtitle, .apero-text h3, .diner-text h3,
.map-address h3, .map-transport h3, .space-text h3 {
    font-family: 'Playfair Display', serif;
}

/* Specific elements that should use Source Sans Pro (sans-serif) for readability */
.hero-subtitle, .hero-language, .current-lang, .lang-option, .nav-link, .hero-btn, .cta-button, .carte-mets-btn,
.content-description, .detail-paragraph, .menu-description, .gift-description, .apero-time, .apero-description,
.diner-description, .gouter-description, .map-description, .space-description, .newsletter-input, .newsletter-btn {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #485e52;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-elegant);
    transition: all 0.5s ease;
    box-shadow: 0 2px 20px var(--shadow-soft);
    transform: translateY(-100%);
    opacity: 0;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav {
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.8rem 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 160px;
    width: auto;
    max-width: 600px;
    transition: transform 0.3s ease;
}

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

.language-selector {
    position: relative;
    display: inline-block;
}

.current-lang {
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(72, 94, 82, 0.9);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.current-lang::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.language-selector:hover .current-lang {
    background: rgba(72, 94, 82, 1);
    border-color: var(--primary-gold);
}

.language-selector:hover .current-lang::after {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-cream);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 100%;
}

.lang-option {
    display: block;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.lang-option:hover {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

/* --- NAVBAR BUTTONS MODERN GOLD --- */
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  font-size: 1rem;
  border-radius: 6px;
  min-width: unset;
  width: auto;
  height: 44px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  background: #d4af37;
  color: #fff;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
  text-decoration: none;
  outline: none;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-link {
    width: 95%;
    font-size: 1.05rem;
    padding: 0.8rem 1.1rem;
    height: auto;
    margin: 10px auto;
    white-space: normal;
  }
}

.reservation-btn, .gift-btn {
    border-color: rgba(72, 94, 82, 0.9);
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        padding: 0.4rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2.4px;
        margin: 2.4px 0;
    }
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
    background-color: #d4af37;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
    background-color: #d4af37;
}

/* Hero Section - Nouvelle version minimaliste */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url('assets/img/deco/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    text-align: center;
}

.hero-main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* Overlay pour améliorer la lisibilité du texte */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(199, 190, 180, 0.3);
    z-index: 1;
}

/* Assurer que le contenu reste au-dessus de l'overlay */
.hero > * {
    position: relative;
    z-index: 2;
}

.hero-language-selector {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    cursor: pointer;
}

.hero-lang-option {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.hero-lang-option a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-lang-option a:hover {
    transform: scale(1.1);
}

.hero-lang-option.active {
    opacity: 1;
    transform: translateY(0);
}

/* Au survol du conteneur, montrer l'option inactive */
.hero-language-selector:hover .hero-lang-option:not(.active) {
    opacity: 1;
    transform: translateY(0);
}

/* Au survol du conteneur, montrer le divider */
.hero-lang-divider {
    font-size: 1rem;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    margin: 0.1rem 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-language-selector:hover .hero-lang-divider {
    opacity: 1;
}

.hero-year {
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Styles communs pour les trois boîtes */
.hero-year-wrapper,
.hero-title-wrapper,
.hero-subtitle-wrapper {
    background: linear-gradient(135deg, rgba(72, 94, 82, 0.15), rgba(72, 94, 82, 0.08));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(72, 94, 82, 0.3);
    box-shadow: 0 10px 25px rgba(72, 94, 82, 0.1);
    position: relative;
    overflow: hidden;
    width: fit-content;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Effet de brillance au survol */
.hero-year-wrapper::before,
.hero-title-wrapper::before,
.hero-subtitle-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(72, 94, 82, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-year-wrapper:hover::before,
.hero-title-wrapper:hover::before,
.hero-subtitle-wrapper:hover::before {
    opacity: 1;
}

/* Styles spécifiques pour chaque boîte */
.hero-year-wrapper {
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.hero-title-wrapper {
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.hero-subtitle-wrapper {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: white;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 1rem 0 0 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid;
    min-width: 150px;
    text-align: center;
}

.hero-btn.primary {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    border-color: rgba(72, 94, 82, 0.9);
}

.hero-btn.primary:hover {
    background-color: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

.hero-btn.secondary {
    background-color: transparent;
    color: rgba(72, 94, 82, 0.9);
    border-color: rgba(72, 94, 82, 0.9);
}

.hero-btn.secondary:hover {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

/* Content Section (réorganisée) */
.content-intro {
    background: var(--background-warm);
}

/* Section texte avec fond vert */
.content-text-section {
    background-color: rgba(72, 94, 82, 1);
    padding: 4rem 2rem;
    text-align: center;
}

.content-text-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f8f6f0;
    font-weight: 300;
    text-align: center;
    font-style: italic;
}

/* Logo du restaurant centré */
.restaurant-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-restaurant {
    max-width: 400px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-restaurant:hover {
    opacity: 1;
}

/* Images côte à côte hero */
.content-hero-images {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--background-warm);
}

.content-hero-images-container {
    display: flex;
    max-width: 800px;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.hero-image-left,
.hero-image-right {
    width: 300px;
    height: 400px;
    overflow: hidden;
}

.chef-img,
.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.chef-img:hover,
.dish-img:hover {
    transform: scale(1.02);
}

/* Garder l'ancienne classe pour compatibilité */
.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-elegant);
}

.content-img:hover {
    transform: scale(1.02);
}

.content-details {
    background: var(--background-warm);
    padding: 4rem 2rem;
    text-align: center;
}

.details-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.detail-paragraph {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.detail-paragraph:last-child {
    margin-bottom: 0;
}

/* Carousel Section */
.carousel-section {
    padding: 6rem 0;
    background: var(--background-warm);
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.carousel-slide {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 94, 82, 0.1);
}

.carousel-slide img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(72, 94, 82, 0.25);
}

/* Navigation dots harmonisées */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: rgba(72, 94, 82, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: rgba(72, 94, 82, 0.6);
    transform: scale(1.1);
}

.carousel-dot.active {
    background-color: rgba(72, 94, 82, 0.9);
    transform: scale(1.3);
}

/* Flèches de navigation harmonisées */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(72, 94, 82, 0.9);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(72, 94, 82, 0.3);
}

.carousel-container:hover .carousel-nav {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav:hover {
    background: rgba(72, 94, 82, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(72, 94, 82, 0.4);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
}

/* Animation automatique supprimée pour le contrôle manuel */

/* Menu Section */
.menu-section {
    padding: 8rem 2rem;
    background: var(--background-warm);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.menu-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.menu-card {
    background-color: var(--background-warm);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.menu-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-style: italic;
}

.menu-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.menu-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(72, 94, 82, 0.9);
}

.menu-cta-button:hover {
    background-color: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid;
    min-width: 150px;
    text-align: center;
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    border-color: rgba(72, 94, 82, 0.9);
}

.cta-button:hover {
    background-color: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: rgba(72, 94, 82, 0.9);
    border-color: rgba(72, 94, 82, 0.9);
}

.cta-button.secondary:hover {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}



/* Separator Image Section */
.separator-section {
    width: 100%;
    background: var(--background-warm);
    padding: 0;
    overflow: hidden;
}

.separator-image {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gift Section */
.gift-section {
    padding: 8rem 2rem;
    background-color: rgba(72, 94, 82, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.gift-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.gift-card {
    background-color: #f8f6f0;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gift-header {
    margin-bottom: 1rem;
}

.gift-restaurant-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gift-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-style: italic;
}

.gift-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.gift-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(72, 94, 82, 0.9);
}

.gift-cta-button:hover {
    background-color: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--background-warm);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.hours {
    margin-bottom: 2rem;
}

.hours p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.notice {
    margin-bottom: 3rem;
}

.notice p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-details p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(72, 94, 82, 0.9);
    color: var(--primary-cream);
    padding: 6rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 400px;
    width: auto;
    max-width: 1000px;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-cream);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    border: 2px solid rgba(72, 94, 82, 0.9);
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    background-color: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

.language-footer {
    margin: 1rem 0;
}

.language-footer span {
    margin-right: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--accent-copper);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-copper);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
    border-radius: 25px;
    transition: all 0.4s ease;
    min-width: 200px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 1), rgba(212, 175, 55, 0.9));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-language-selector {
    margin-top: 1.6rem;
}

.mobile-lang-link {
    display: block;
    padding: 0.8rem 1.6rem;
    background: rgba(72, 94, 82, 0.9);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.mobile-lang-link:hover {
    background: rgba(72, 94, 82, 1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem;
        position: relative;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    /* Hide desktop language selector on mobile since we have mobile version */
    .nav-left .language-selector {
        display: none;
    }
    
    .nav-center {
        flex: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10000;
    }
    
    .logo-img {
        height: 96px;
        max-width: 400px;
    }
    
    .footer-logo-img {
        height: 320px;
        max-width: 800px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-year-wrapper {
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
    }
    
    .hero-title-wrapper {
        padding: 0.8rem 1.2rem;
        border-radius: 10px;
    }
    
    .hero-subtitle-wrapper {
        padding: 0.6rem 1rem;
        border-radius: 8px;
    }
    
    .hero-main-container {
        gap: 0.8rem;
    }
    
    .hero-language-selector {
        top: 1rem;
        right: 1rem;
    }
    
    .hero-lang-option {
        font-size: 1.4rem;
    }
    
    .hero-lang-divider {
        font-size: 0.8rem;
    }
    
    /* Sur mobile, garder le même comportement de survol */
    .hero-lang-option:not(.active) {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .hero-lang-divider {
        opacity: 0;
    }
    
    /* Activer l'effet au toucher/tap sur mobile */
    .hero-language-selector:hover .hero-lang-option:not(.active),
    .hero-language-selector:active .hero-lang-option:not(.active),
    .hero-language-selector:focus .hero-lang-option:not(.active) {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-language-selector:hover .hero-lang-divider,
    .hero-language-selector:active .hero-lang-divider,
    .hero-language-selector:focus .hero-lang-divider {
        opacity: 1;
    }
    
    /* Améliorer l'interaction tactile */
    .hero-language-selector {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
        padding: 0.8rem 2rem;
    }
    
    .content-text-section {
        padding: 3rem 1rem;
    }
    
    .content-text-container {
        padding: 0 1rem;
    }
    
    .content-description {
        font-size: 1.1rem;
    }
    
    .details-text-container {
        padding: 0 1rem;
    }
    
    .detail-paragraph {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-hero-images {
        padding: 3rem 1rem;
    }
    
    .content-hero-images-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .logo-restaurant {
        max-width: 300px;
    }
    
    .carousel-slide {
        width: 250px;
        height: 350px;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .menu-section {
        padding: 4rem 1rem;
        min-height: 50vh;
    }
    
    .menu-card {
        padding: 3rem 2rem;
        max-width: 100%;
    }
    
    .menu-title, .gift-title, .contact-title {
        font-size: 1.8rem;
    }
    
    .gift-section {
        padding: 4rem 1rem;
        min-height: 50vh;
    }
    
    .gift-card {
        padding: 3rem 2rem;
        max-width: 100%;
    }
    
    .gift-title {
        font-size: 1.8rem;
    }
    
    .separator-image {
        height: 40vh;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-buttons .cta-button {
        width: 100%;
        max-width: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image optimization for real photos */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Ensure images stay within their containers */
.hero-image, .menu-images, .gift-image, .carousel-container {
    overflow: hidden;
    position: relative;
}

/* Prevent images from floating during scroll */
.hero-img, .carousel-slide img {
    position: relative;
    transform: none !important;
    will-change: auto;
}

/* Specific styling for restaurant photos */
.hero-img, .carousel-slide img {
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Grain effect removed to prevent floating appearance */

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .menu-content, .gift-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Removed problematic parallax effect */

/* Hover effects */
.nav-link, .cta-button, .social-link, .footer-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before, .cta-button:hover::before {
    left: 100%;
} 

/* Styles pour les sections de la page journee */

/* Section Au Menu avec fond vert */
.au-menu-section {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    padding: 80px 0;
    margin: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.au-menu-title {
    font-size: 4rem;
    font-weight: 300;
    color: #7cc4a0;
    margin-bottom: 60px;
    text-align: center;
}

.petit-dejeuner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Modification du positionnement des cercles sous les titres */
/* Repositionnement des cercles à gauche avec texte après le cercle */
.petit-dejeuner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    padding-left: 30px;
    display: block;
}

.petit-dejeuner-circle {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.petit-dejeuner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 30px;
}



.petit-dejeuner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Section Déjeuner */
.dejeuner-section {
    margin-bottom: 100px;
}

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

/* Espace entre les boutons et les photos dans la section déjeuner */
.dejeuner-container .gouter-buttons-container {
    margin-bottom: 50px;
}

.dejeuner-intro {
    text-align: left;
    margin-bottom: 40px;
    max-width: 400px;
}

.dejeuner-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.dejeuner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.dejeuner-item {
    position: relative;
}

.dejeuner-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.dejeuner-text {
    max-width: 400px;
    margin: 40px 0;
}

.dejeuner-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.section-title-journee {
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-left: 40px;
    display: block;
}

.section-title-journee::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4af37;
    margin: 20px auto;
}

.dejeuner-circle {
    width: 80px;
    height: 80px;
    background-color: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

/* Section Goûter sur fond vert */
.gouter-section {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    padding: 80px 0;
    margin: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.gouter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gouter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
    display: block;
}

.gouter-circle {
    width: 80px;
    height: 80px;
    background-color: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.gouter-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #b8d4c2;
}

.gouter-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Container pour aligner les boutons temps et carte */
.gouter-buttons-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Alignement parfait des boutons dans le conteneur */
.gouter-buttons-container .apero-time,
.gouter-buttons-container .carte-mets-btn {
    margin: 0;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gouter-buttons-container .apero-time {
    padding: 0.5rem 1.4rem;
}

.gouter-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Section Apéro et Dîner */
.apero-diner-section {
    margin: 100px 0;
}

.apero-block {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin-bottom: 80px;
}

.apero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.apero-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-left: 30px;
    display: block;
}

.apero-circle {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

/* Nouveau style pour les boutons horaires - style arrondi vert doux */
.apero-time {
    display: inline-block;
    padding: 14px 28px;
    background-color: #7fb069;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(127, 176, 105, 0.25);
    min-width: 180px;
    text-align: center;
}



/* Alignement spécial pour les sections avec boutons alignés */
.gouter-text .apero-time {
    margin-bottom: 0;
}

.gouter-text .carte-mets-btn {
    margin-top: 0;
}

/* Alignement des boutons dans la section dîner */
.diner-text .gouter-buttons-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.diner-text .apero-time {
    margin-bottom: 0;
}

.diner-text .carte-mets-btn {
    margin-top: 0;
}

.apero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.apero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.diner-section {
    background-color: rgba(72, 94, 82, 0.9);
    color: white;
    padding: 80px 0;
    margin: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.diner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    padding-left: 30px;
    display: block;
}

.diner-circle {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.diner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

.diner-image {
    position: relative;
}

.diner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Animations d'apparition */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

 

/* Harmonisation boutons navbar et hero */
.nav-link, .hero-btn {
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.4s ease;
  border: 2px solid;
  min-width: 150px;
  text-align: center;
}

.nav-link,
.hero-btn.primary {
  background-color: rgba(72, 94, 82, 0.9);
  color: white;
  border-color: rgba(72, 94, 82, 0.9);
}

.nav-link:hover,
.nav-link:focus,
.hero-btn.primary:hover {
  background-color: rgba(72, 94, 82, 1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
  transform: translateY(-2px);
  outline: none;
}

/* Nouveau style pour les boutons de menu - effet transparent avec bordure dorée */
.carte-mets-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.4s ease;
  border: 2px solid #d4af37;
  min-width: 150px;
  text-align: center;
  background-color: transparent;
  color: #d4af37;
  position: relative;
  overflow: hidden;
}

.carte-mets-btn:hover {
  background-color: #d4af37;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-btn.secondary {
  background-color: transparent;
  color: rgba(72, 94, 82, 0.9);
  border-color: rgba(72, 94, 82, 0.9);
}

.hero-btn.secondary:hover {
  background-color: rgba(72, 94, 82, 0.9);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(72, 94, 82, 0.3);
}

@media (max-width: 768px) {
  .nav-link, .hero-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .carte-mets-btn {
    display: inline-block;
    width: auto;
    margin: 10px 0;
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
  
  .apero-time {
    display: inline-block;
    width: auto;
    margin: 10px 0;
    font-size: 0.9rem;
  }
} 

/* Section Plan d'accès */
.map-section {
    padding: 80px 20px;
    background: var(--background-warm);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.map-wrapper {
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.map-address h3,
.map-transport h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.map-address p,
.map-transport p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 20px;
    }
    
    .map-title {
        font-size: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
} 

/* Privatisation page specific styles */
.privatisation-spaces {
    background-color: #485e52;
    padding: 4rem 2rem;
    color: white;
}

.space-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.space-text h3 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.space-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.space-features {
    list-style: none;
    padding: 0;
}

.space-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
}

.space-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.space-image {
    display: flex;
    justify-content: center;
}

.space-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privatisation-contact-info {
    background: rgba(72, 94, 82, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #485e52;
}

.privatisation-contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.privatisation-contact-info a {
    color: #485e52;
    text-decoration: none;
    font-weight: 600;
}

.privatisation-contact-info a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Hero privatisation specific */
.privatisation-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/img/deco/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Responsive privatisation styles */
@media (max-width: 768px) {
    .privatisation-spaces {
        padding: 3rem 1rem;
    }
    
    .space-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .space-text h3 {
        font-size: 1.5rem;
    }
    
    .space-description {
        font-size: 1rem;
    }
    
    .space-image img {
        height: 250px;
    }
    
    .privatisation-contact-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .privatisation-contact-info p {
        font-size: 1rem;
    }
} 

/* Ajustement des espacements pour les cercles à côté des titres */
.petit-dejeuner-text,
.gouter-text,
.apero-text,
.diner-text {
    margin-bottom: 30px;
}

.dejeuner-container .gouter-text {
    margin-bottom: 30px;
}

.gouter-buttons-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
} 

/* Responsive pour les nouvelles sections avec cercles à gauche du texte */
@media (max-width: 768px) {
    .dejeuner-grid,
    .gouter-content,
    .apero-content,
    .diner-content,
    .petit-dejeuner-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title-journee {
        font-size: 2rem;
        padding-left: 35px;
    }
    
    .gouter-text h2 {
        font-size: 1.8rem;
        padding-left: 35px;
    }
    
    .petit-dejeuner-text h3,
    .apero-text h3,
    .diner-text h3 {
        font-size: 1.8rem;
        padding-left: 25px;
    }
    
    .au-menu-title {
        font-size: 2.5rem;
    }
    
    .gouter-buttons-container,
    .diner-text .gouter-buttons-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 30px;
    }
    
    /* Ajustement des cercles sur mobile */
    .petit-dejeuner-circle,
    .apero-circle,
    .diner-circle {
        width: 50px;
        height: 50px;
    }
    
    .gouter-circle,
    .dejeuner-circle {
        width: 60px;
        height: 60px;
    }
    
    .petit-dejeuner-text,
    .gouter-text,
    .apero-text,
    .diner-text {
        margin-bottom: 30px;
    }
    
    .dejeuner-container .gouter-text {
        margin-bottom: 30px;
    }
} 