/*
Theme Name: Le Manoir
Theme URI: https://lemanoir-stprex.com
Author: Alessia Edelman
Description: Thème WordPress sur mesure pour Le Manoir St-Prex.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* === VARIABLES CSS === */
:root {
    --color-primary: #B8C1B1;
    --color-secondary: #D9A7A0;
    --color-dark: #6A5E57;
    --color-light: #F8F6F4;
    --color-white: #FFFFFF;
    --color-text: #7A6E67;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'inter', sans-serif;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    font-weight: 300;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

input {
    border: none !important;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
}

h1 {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    transform: scaleY(1.1);
    /* augmente la hauteur */
    display: inline-block;
    /* obligatoire pour que le scale s’applique bien */
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h3.card-title {
    font-size: 2rem;
    font-weight: 200 !important;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
}

select {
    color: #757575 !important;
}

p.card-description {
    color: #B8C1B1;
}

/* === HEADER === */
header {
    background-color: var(--color-light);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.grecaptcha-badge {
    visibility: hidden;
}

.site-content {
    padding-bottom: 2.5rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-dark);
}

.logo span {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

nav a:hover,
nav li.current-menu-item>a,
nav li.current_page_item>a {
    color: var(--color-primary);
}

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

nav a:hover::after,
nav li.current-menu-item>a::after,
nav li.current_page_item>a::after {
    width: 100%;
}

.btn-reserve {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none !important;
    color: var(--color-white) !important;
}

.btn-reserve:hover {
    background-color: #7A8A77;
    transform: translateY(-2px);
    text-decoration: none !important;
    color: var(--color-white) !important;
}

a.btn-reserve,
a.btn-reserve:hover {
    text-decoration: none !important;
    color: var(--color-white) !important;
}

nav a.btn-reserve::after,
nav a.btn-reserve:hover::after {
    display: none;
}

/* === Section Bon Cadeau === */
.gift-section {
    background: #f8f6f4;
    padding: 3rem 2rem;
    text-align: center;
}

/* Bouton élégant */
.btn-gift {
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    /* s'aligne avec la ligne du texte */
    justify-content: center;
    gap: 6px;
    padding: 0.9rem 1.9rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 60px;
    /* espace entre l’icône et le texte */
}


.btn-gift:hover {
    background: #b98d8d;
    transform: translateY(-1px);
}

hr {
    width: 100px;
    height: 1px;
    background: var(--color-secondary);
    margin: 0 auto 60px auto;
    border: none;
}

.btn-gift svg {
    flex-shrink: 0;
    stroke-width: 5;
    top: 0.1em;
    /* micro-ajustement vertical */
    height: 1.4em;
    /* même hauteur visuelle que le texte */
    width: auto;
    stroke-width: 6 !important;
    flex-shrink: 0;
}

/* plus marqué */

.menu-sub-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 6rem;
}



/* === HERO SECTION === */
.hero {
    position: relative;
    height: 896px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    min-height: 70vh;
    /* adapte à la taille d’écran */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #F8F6F4;
}


.hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--color-white);
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* === SECTIONS === */
.disclaimer {
    padding: 0 2rem;
}

.manoir-intro {
    padding: 5rem 2rem;
}

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

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

.container-img {
    max-width: 540px;
    height: 406px;
    width: 100%;
}

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

.frise-container {
    display: grid;
    gap: 3rem;
}

.frise-img-1 {
    order: 1;
    max-width: 540px;
    height: 350px;
    width: 100%;
}

.frise-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frise-img-2 {
    order: 2;
    max-width: 540px;
    height: 350px;
    width: 100%;
}

.frise-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frise-bloc-1 {
    order: 1;
}

.frise-bloc-2 {
    order: 2;
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-left: 60px;
    padding-right: 60px;
}

.section-header h2 {
    color: var(--color-dark);
}

.section-header p {
    color: var(--color-text);
}

.container-full-width {
    background-color: var(--color-light);
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0%;
    width: 100%;

}

.front-page-cuisine-section-top,
.front-page-cuisine-section-bottom {
    background-color: var(--color-light);
    max-width: 1200px;
    margin: 0 auto;

}

.front-page-cuisine-section-top {
    padding: 5rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.front-page-cuisine-section-top>.container-img {
    order: 1;
}

.experience-text {
    order: 2;
}

.front-page-cuisine-section-bottom {
    padding: 2rem 2rem 4rem 2rem;
}

.photos-section {
    padding: 4rem 4rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.frise-line {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}


/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.card-description {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.card-badge {
    display: inline-block;
    padding: 0.8rem 1.3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    /* aligne le SVG et le texte sur une ligne */
    align-items: center;
    /* centre verticalement */
    gap: 8px;
    /* espace entre l’icône et le texte */
}

.btn-primary:hover {
    background-color: #7A8A77;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

/* === INFO CARDS === */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 8px;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.info-icon.clock {
    background-color: transparent;
    color: var(--color-primary);
}

.info-icon.people {
    background-color: transparent;
    color: var(--color-secondary);
}

.info-icon.contact {
    background-color: transparent;
    color: var(--color-primary);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-card p {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.btn-glass-effect {
    background: rgba(255, 255, 255, 0.15);
    /* transparence légère */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    /* texte blanc */
    backdrop-filter: blur(10px);
    /* effet de flou derrière */
    -webkit-backdrop-filter: blur(10px);
    /* support Safari */
    border-radius: 8px;
    /* arrondi doux */
    padding: 0.75rem 1.5rem;
    /* même taille visuelle */
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* effet au survol */
.btn-glass-effect:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* === RESERVATION FORM === */
.reservation-form {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--color-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* === GALLERY === */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: var(--color-text);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

/* === EVENTS === */
.private-event-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-text);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.tab-btn[data-tab="prives"].active {
    background-color: #d7a6a2;
    /* rose */
    color: var(--color-white);
}

.events-list {
    display: grid;
    gap: 3rem;
}

.event-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-item:nth-child(even) {
    direction: rtl;
}

.event-item:nth-child(even)>* {
    direction: ltr;
}

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

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-price {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.partner-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partner-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.partner-icon.leaf {
    background-color: rgba(139, 156, 136, 0.2);
    color: var(--color-primary);
}

.partner-icon.fish {
    background-color: rgba(201, 155, 155, 0.2);
    color: var(--color-secondary);
}

.partner-icon.cheese {
    background-color: rgba(139, 156, 136, 0.2);
    color: var(--color-primary);
}

.partner-icon.meat {
    background-color: rgba(201, 155, 155, 0.2);
    color: var(--color-secondary);
}

.partner-icon.wine {
    background-color: rgba(139, 156, 136, 0.2);
    color: var(--color-primary);
}

.partner-icon.herbs {
    background-color: rgba(201, 155, 155, 0.2);
    color: var(--color-secondary);
}

.partner-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* === COMMITMENTS === */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    text-align: center;
    padding: 2rem;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.commitment-icon>svg {
    width: 64px;
}

.team-section-grid>.team-image-container {
    order: 2;
}

.team-section-grid>.team-section-column {
    order: 1;
}

/* === MENU === */

.menu-item-card {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #BFB7AE;
}

.menu-item-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #6E7E64;
}

.menu-item-card p {
    font-size: 0.875rem;
    color: #BFB7AE;
    line-height: 1.6;
    margin: 0;
}

.menu-section {
    background: #f8f6f4;
}

.dish-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.dish-container span {
    color: #D9A7A0;
    font-weight: 500;
    font-size: 1.1rem;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-light);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-light);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: 2rem;
    font-family: Playfair Display;
    padding-left: 10px;
}

.chef-suggestions {
    margin-bottom: 4rem;
}

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

/* === CONTACT === */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item-icon.address {
    background-color: rgba(139, 156, 136, 0.2);
    color: var(--color-primary);
}

.contact-item-icon.phone {
    background-color: rgba(201, 155, 155, 0.2);
    color: var(--color-secondary);
}

.contact-item-icon.email {
    background-color: rgba(139, 156, 136, 0.2);
    color: var(--color-primary);
}

.contact-item-icon.hours {
    background-color: rgba(201, 155, 155, 0.2);
    color: var(--color-secondary);
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.map-container {
    background-color: var(--color-light);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.map-wrap {
    position: relative;
    width: 100%;
    height: 450px;
    /* ← choisis la hauteur que tu veux ici */
    border-radius: 16px;
    overflow: hidden;
    background: #f4f1ee;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* === QUOTE SECTION === */
.quote-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 2rem;
    text-align: center;
}

.quote-section blockquote {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-family: var(--font-secondary);
}

/* === FOOTER === */
footer {
    background-color: #2b2929;
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-hours p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.partnership-container {
    padding: 0 !important;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* === TEAM SECTION === */


.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Responsive rules for team section */



/* === MENU MOBILE BURGER === */

/* Bouton hamburger (amélioré) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation du bouton hamburger quand le menu est ouvert */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Bouton de fermeture (croix) à l'intérieur du menu */
.menu-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.menu-close span {
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--color-dark);
    top: 50%;
    left: 50%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover span {
    background-color: var(--color-primary);
}

/* Overlay sombre */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Empêcher le scroll quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* === POPUP FERMETURE === */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.partners-grid-container {
    padding: 0rem 4rem 4rem 4rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.popup-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-dark);
    top: 50%;
    left: 50%;
    transition: background-color 0.3s ease;
}

.popup-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close:hover span {
    background-color: var(--color-primary);
}

.popup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(184, 193, 177, 0.15);
    color: var(--color-primary);
}

.popup-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.popup-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.popup-content p strong {
    color: var(--color-dark);
    font-weight: 500;
}

/* Empêcher le scroll quand le popup est ouvert */
body.popup-open {
    overflow: hidden;
}

/* Responsive popup */
@media (max-width: 1024px) {
    .popup-content {
        padding: 2.8rem 2.3rem;
        max-width: 480px;
    }

    .popup-content h3 {
        font-size: 1.7rem;
    }

    .popup-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .popup-content {
        padding: 2.5rem 2rem;
        max-width: 450px;
    }

    .popup-content h3 {
        font-size: 1.6rem;
    }

    .popup-content p {
        font-size: 0.98rem;
    }

    .popup-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.2rem;
    }

    .private-event-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .private-events-photos-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .info-cards {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .popup-content {
        padding: 2.2rem 1.8rem;
        max-width: 400px;
    }

    .popup-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .popup-content p {
        font-size: 0.95rem;
    }

    .popup-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }

    .popup-close {
        width: 32px;
        height: 32px;
    }

    .popup-close span {
        width: 18px;
    }

    .section-events {
        padding: 0 !important;
    }

    .partners-grid-container {
        padding: 0 0 3rem 0 !important;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popup-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .popup-content p {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    .popup-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .contact-bottom {
        margin-bottom: 0 !important;
        padding-bottom: 2rem;
    }

    .popup-icon svg {
        width: 40px;
        height: 40px;
    }

    .popup-close {
        width: 30px;
        height: 30px;
        top: 0.8rem;
        right: 0.8rem;
    }

    .popup-close span {
        width: 16px;
    }

    .disclaimer-menu {
        padding: 0 2rem !important;
    }

    .manoir-intro {
        padding: 2rem 2rem !important;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {

    /* Navigation pour tablettes (iPad Air, etc.) */
    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .btn-reserve {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .event-item {
        grid-template-columns: 1fr;
    }

    .event-image {
        height: 350px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container,
    .container-full-width {
        padding: 5rem 4rem;
    }

    /* Front-page specific */
    .front-page-cuisine-section-top {
        grid-template-columns: 1fr;
        gap: 3rem;

    }

    .front-page-cuisine-section-bottom {
        padding: 2rem;
    }

    /* Layout vertical pour sections avec grille 1fr 1fr */
    section .container>div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    .container-img {
        max-width: 100%;
        height: 350px;
    }

    .frise-line {
        gap: 2.5rem;
        align-items: start;
    }

    .frise-img-1,
    .frise-img-2 {
        max-width: 100%;
        height: 280px;
    }

    .frise-container h3 {
        font-size: 1.4rem;
        margin: 0.8rem 0;
    }

    .frise-container p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .frise-container .card-badge {
        padding: 0.6rem 1.1rem;
        font-size: 0.8rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .disclaimer {
        padding: 0 2rem;
    }

    .disclaimer>div {
        padding: 0 0 3rem 0;
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        font-weight: 300;
    }

    .map-section {
        padding: 2rem 4rem;
    }

    .reservation-form {
        max-width: 100%;
    }

    .work-tabs-section .container {
        padding: 0;
    }

    .work-tabs {
        padding-top: 5rem;
    }

    .work-tab-content .section-light {
        padding: 0;
    }

    .work-tab-content section {
        padding: 0;
    }

    .partners-grid-container {
        padding: 0rem 4rem 4rem 4rem;
    }

    .front-page-cuisine-section-top>.container-img {
        order: 2;
    }

    .experience-text {
        order: 1;
    }

    .team-image-container {
        height: auto;
    }

    .owners-image-container {
        height: auto;
    }

}

/* === BREAKPOINT SPÉCIFIQUE TABLETTES (iPad Air, iPad mini) === */
@media (max-width: 1200px) {

    /* Afficher le menu hamburger sur tablettes */
    .menu-toggle {
        display: flex;
        margin-bottom: auto;
    }

    /* Afficher le bouton de fermeture */
    .menu-close {
        display: block;
    }

    /* Menu slider depuis la droite */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 60%;
        max-width: 350px;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        border-bottom-color: var(--color-primary);
        padding-left: 0.5rem;
    }

    nav ul li a::after,
    nav ul li a:hover::after {
        display: none;
    }

    /* Frise verticale pour iPad mini et iPad Air */
    .frise-line {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .frise-img-1,
    .frise-img-2 {
        order: 1;
        max-width: 100%;
        height: 420px;
    }

    .frise-bloc-1,
    .frise-bloc-2 {
        order: 2;
    }

    .frise-container h3 {
        font-size: 1.4rem;
        margin: 0.8rem 0;
    }

    .frise-container p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .frise-container .card-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {

    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Afficher le bouton de fermeture */
    .menu-close {
        display: block;
    }

    .menu-tabs {
        display: flex;
        flex-direction: column;
    }

    /* Menu slider depuis la droite */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 350px;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        border-bottom-color: var(--color-primary);
        padding-left: 0.5rem;
    }

    nav ul li a::after,
    nav ul li a:hover::after {
        display: none;
    }

    .btn-reserve {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    /* Frise pour smartphones */
    .frise-img-1,
    .frise-img-2 {
        height: 220px;
    }

    .hero {
        height: 500px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .container {
        padding: 4rem 3rem;
    }


    section {
        padding: 3rem 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 16/10;
        max-width: 100%;
    }

    .reservation-form {
        padding: 2rem 1.5rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-item-price {
        margin-left: 0;
        font-family: Playfair Display;
    }

    .event-image {
        height: 300px;
    }

    .dish-container {
        flex-direction: column;
    }

    .menu-item-price {
        padding-left: 0;
    }

    /* Front-page specific for mobile */
    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Experience section */
    section .container>div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    .container-img {
        max-width: 100%;
        height: auto;
        margin-top: 2rem;
    }


    .front-page-cuisine-section-bottom {
        padding: 1.5rem;
    }

    .front-page-cuisine-section-bottom>div[style*="grid-template-columns: repeat(3"] {
        display: block !important;
    }

    .commitment-card {
        margin-bottom: 2rem;
    }

    .commitment-card:last-child {
        margin-bottom: 0;
    }

    /* Events section */
    section>div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    .card {
        margin-bottom: 2rem;
    }

    .card:last-child {
        margin-bottom: 0;
    }

    /* Quote section */
    .quote-section blockquote {
        font-size: 1.3rem;
    }

    /* Frise photos */
    .photos-section {
        padding: 3rem 1.5rem 4rem 1.5rem;
    }

    .frise-line {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .frise-img {
        height: 280px;
    }

    /* Partners grid */
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .work-tabs {
        flex-direction: column;
        width: 50%;
        margin: 0 auto;
    }

    .work-tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* === EXPERIENCE SECTION === */
.experience-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* === OWNERS SECTION (Le Manoir Page) === */
.owners-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tablet-owner-img {
    display: none;
}

.desktop-owner-img {
    display: block;
}

/* === TEAM SECTION (Le Manoir Page) === */
.team-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tablet-team-img {
    display: none;
}

.desktop-team-img {
    display: block;
}


@media (max-width: 480px) {

    /* Menu mobile plus large sur petits écrans */
    nav {
        width: 85%;
    }

    h1 {
        font-size: 2rem;
        transform: scaleY(1.05);
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h3.card-title {
        font-size: 1.5rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    /* Hero section */
    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 3rem;
    }


    .hero-content {
        padding: 1rem;
        width: 95%;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-glass-effect {
        width: 100%;
        justify-content: center;
    }

    /* Cuisine section */
    .front-page-cuisine-section-bottom {
        padding: 2.5rem 2rem;
    }

    .container {
        padding: 2.5rem 2rem;
    }

    .section-light {
        padding: 0;
    }

    .section-light p {
        font-size: 16px;
    }

    .commitment-card {
        margin-bottom: 0;
    }

    .container-img {
        height: 250px;
    }

    .frise-img {
        height: 220px;
    }

    /* Cards */
    .card-content {
        padding: 1.5rem;
    }

    .card-image {
        height: 200px;
    }

    .event-image {
        height: 250px;
    }

    /* Quote section */
    .quote-section {
        padding: 3rem 1rem;
    }

    .quote-section blockquote {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .quote-section cite {
        font-size: 0.9rem;
    }

    /* Commitment cards */
    .commitment-icon {
        width: 60px;
        height: 60px;
    }

    .commitment-icon>svg {
        width: 54px;
    }

    /* Info cards */
    .info-card {
        padding: 1.5rem;
    }

    /* Reservation form */
    .reservation-form {
        padding: 1.5rem 1rem;
        height: auto;
    }

    /* Photos section */
    .photos-section {
        padding: 2rem 1rem 3rem 1rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    /* Gift section button */
    .btn-gift {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        margin-top: 40px;
    }

    .frise-img-1 {
        order: 1;
    }

    .frise-img-2 {
        order: 1;
    }

    .frise-bloc-1 {
        order: 2;
    }

    .frise-bloc-2 {
        order: 1;
    }

    .frise-container {
        gap: 0;
    }

    .menu-tabs {
        flex-direction: column;
    }

    .menu-sub-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem 3rem;
    }

    .menu-item-card {
        text-align: center;
    }

    .dish-container h4,
    .dish-container span {
        font-size: 15px;
    }

    .dish-container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .menu-item-price {
        font-size: 14px;
        padding-left: 0;
    }

    .private-event-card {
        display: flex;
        flex-direction: column;
    }

    .tab-btn {
        font-size: 14px;
    }

    .gallery-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .gallery-filter .filter-btn {
        width: 100%;
        padding: 0.6rem 0.5rem;
        font-size: 0.7rem;
    }

    .section-events {
        padding: 2.5rem 0rem !important;
    }

    .private-events-photos-container,
    .practical-information-subcontainer,
    .practical-information-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .private-events-photos-container>div {
        width: 100%;
    }

    .practical-information-text-container {
        text-align: center;
    }

    .access-box {
        margin-bottom: 40px;
    }


    .access-box-container {
        padding: 2rem 0 0 0;
    }

    .work-tabs-section {
        padding: 1.5rem 2rem 1.5rem 2rem !important;
    }

    .work-tabs-section .container {
        padding: 0;
    }

    .work-tabs {
        margin-bottom: 0;
    }

    .work-tab-content .section-light {
        padding: 0;
    }

    footer {
        padding: 2.5rem 2rem;
    }

}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* === TRAVAILLER AVEC NOUS - STYLES ADDITIONNELS === */


.work-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.work-tabs-container {}

.work-tab-btn {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-text);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.work-tab-btn.active {
    color: var(--color-white);
}

.work-tab-btn[data-work-tab="partenaires"].active {
    background-color: var(--color-primary);
}

.work-tab-btn[data-work-tab="emploi"].active {
    background-color: #d7a6a2;
}

.work-tab-btn:hover {
    opacity: 0.8;
}



.partner-card .partner-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.partner-card .partner-icon.vert {
    background-color: #B8C1B1;
}

.partner-card .partner-icon.rose {
    background-color: var(--color-secondary);
}

.partner-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: white;
}

.partner-badge.vert {
    background-color: #B8C1B1;
}

.partner-badge.rose {
    background-color: var(--color-secondary);
}


.partner-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}

.partner-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

/* Quote Section for Partners */
.partners-quote {
    background: url('https://images.unsplash.com/photo-1592417817098-8fd3d9eb14a5?w=1600') center/cover;
    position: relative;
}

.partners-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.partners-quote .container {
    position: relative;
    z-index: 1;
}

/* Quote Section for Partners */
.reserver-quote {
    position: relative;
}

.reserver-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.reserver-quote .container {
    position: relative;
    z-index: 1;
}

/* Job Offers */
.job-offer {
    background-color: #fff;
    border-radius: 8px;
    padding: 2.5rem;

}

.job-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
}

.job-badge.cdi {
    background-color: var(--color-secondary);
}

.job-badge.temps-plein {
    background-color: #B8C1B1;
}

.job-offer h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
}

.job-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-requirements li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

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

    /* Responsive fixes for Front Page (iPad/Tablet) */
    .experience-section-grid {
        /* Keep 2 columns but reduce gap */
        gap: 2rem;
        grid-template-columns: 1fr;

    }

    .experience-section-grid .container-img {
        height: auto;
        max-width: 100%;
    }

    .experience-section-grid .container-img img {
        max-height: 550px;
    }

    .front-page-cuisine-section-top {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .front-page-cuisine-section-top .container-img {
        height: auto;
        max-width: 100%;
    }

    .front-page-cuisine-section-top .container-img img {
        max-height: 550px;
    }

    /* Fix for Owners Section on Le Manoir page (iPad Mini, Air, Zen Pro) */
    .owners-section-grid {
        display: block;
        /* Disable grid to stack elements */
    }

    .desktop-owner-img {
        display: none;
        /* Hide left column image */
    }

    .tablet-owner-img {
        display: block;
        /* Show image between paragraphs */
        margin: 2rem auto 4rem auto;
        /* Increase bottom margin */
        max-width: 80%;
        /* Limit width if needed */
    }

    .tablet-owner-img img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Fix for Team Section on Le Manoir page (iPad Mini, Air, Zen Pro) */
    .team-section-grid {
        display: block;
        /* Disable grid to stack elements */
    }

    .desktop-team-img {
        display: none;
        /* Hide left column image */
    }

    .tablet-team-img {
        display: block;
        /* Show image between paragraphs */
        margin: 2rem auto 4rem auto;
        /* Increase bottom margin */
        max-width: 80%;
        /* Limit width if needed */
    }

    .tablet-team-img img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

}

@media (max-width: 767px) {


    .work-tab-btn {
        width: 100%;
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    /* Fix mobile layout for Experience section */
    .experience-section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container-full-width {
        padding: 4rem 3rem;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    animation: fadeInSimple 0.3s ease;
}

@keyframes fadeInSimple {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f5f3ef;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #d9a7a0;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f5f3ef;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #d9a7a0;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    display: none;
}

.gallery-item img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Responsive */
@media (max-width: 767px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        display: none;
    }
}

.partner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.partner-link:hover .partner-card {
    transform: translateY(-4px);
    transition: 0.25s ease;
    cursor: pointer;
}

.partners-grid>.partner-link {
    display: contents;
}
/* Disable hover effect on front page event cards */
.home .card:hover,
.front-page .card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Original shadow */
}
