/* Base */
:root {
    --gold: #d4af37;
    --gold-light: #e5c76b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Curseur personnalisé */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    transition: transform 0.2s ease;
}

/* Navigation */
.nav-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.nav-bubble-inner {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-bubble-inner:hover {
    background-color: rgba(20, 20, 20, 0.9);
    transform: scale(1.05);
}

.nav-menu {
    position: absolute;
    bottom: 70px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.nav-menu.active {
    opacity: 1;
    pointer-events: all;
}

.nav-item {
    width: max-content;
    margin: 8px 0;
    padding: 8px 16px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: translateX(-5px);
}

/* Hero Section */
.video-container {
    width: 100%;
    height: 100%;
}

.frosted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
}

.logo-container {
    margin-bottom: 20px;
}

.logo-path {
    fill: rgba(212, 175, 55, 0.1);
    stroke: #d4af377e;
    stroke-width: 5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLogo 3s forwards ease-in-out;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
        fill: #d4af37;
        stroke: #d4af3700;
    }
}

.slogan {
    position: relative;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.slogan::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section Titles */
.section-title {
    position: relative;
    font-size: 3rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--gold);
}

/* Restaurant Section */
.histoire-container {
    position: relative;
    padding: 40px 0;
}

.histoire-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.1;
    filter: blur(8px);
    z-index: -1;
}

.histoire-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.histoire-content.in-view {
    opacity: 1;
    transform: translateY(0);
}

.chef-image img {
    transition: filter 1.5s ease;
}

.chef-image.in-view img {
    filter: grayscale(0);
}


.quote-container {
    position: relative;
    padding: 20px 0;
}

.quote-container::before,
.quote-container::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

.quote-container::before {
    top: -10px;
    left: -20px;
}

.quote-container::after {
    bottom: -30px;
    right: -20px;
    transform: rotate(180deg);
}

.quote {
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.quote.in-view {
    opacity: 1;
}

.philosophie-card {
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    transition: all 0.5s ease;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
}

.philosophie-card.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.philosophie-card:hover {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.philosophie-card h4 {
    color: var(--gold);
}

.equipe-member {
    overflow: hidden;
    border-radius: 5px;
    background-color: rgba(26, 26, 26, 0.5);
    transition: all 0.5s ease;
}

.equipe-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease, filter 1.5s ease;
}


.member-image.in-view img {
    filter: grayscale(0);
}

.equipe-member:hover .member-image img {
    transform: scale(1.05);
    filter: sepia(0.3);
}

.member-tooltip {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.equipe-member:hover .member-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: all 0.5s ease;
}

.menu-tab:hover::before {
    left: 100%;
}

.menu-tab.active {
    background-color: var(--gold);
    color: var(--dark);
}

.menu-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.5s ease;
}

.menu-item:hover {
    background-color: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
}

.menu-item:hover::after {
    width: 100%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.5rem;
    color: var(--gold);
}

.menu-item-price {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-item-price {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.menu-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.menu-item-tags {
    display: flex;
    margin-top: 10px;
}

.menu-item-tag {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--gold-light);
}

/* Galerie Section */
.galerie-container {
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.galerie-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.galerie-slider:active {
    cursor: grabbing;
    transition: none;
}

.galerie-slide {
    width: 100%;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.galerie-slide.active {
    opacity: 1;
}

.galerie-item {
    min-width: 100%;
    height: 30vh;
    padding: 0 20px;
}

.galerie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
}

.galerie-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.galerie-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
}

.galerie-nav-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.galerie-nav-item::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-nav-item:hover::after {
    opacity: 0.5;
}

.galerie-nav-item.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.galerie-nav-item.active::after {
    opacity: 1;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    cursor: pointer;
}



/* Réservations Section */
.reservation-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.reservation-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px;
    background-color: rgba(10, 10, 10, 0.5);
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
    box-shadow: 0 1px 0 var(--gold);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-confirmation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.form-confirmation.active {
    opacity: 1;
    pointer-events: all;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark);
}

.confirmation-message {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.confirmation-details {
    font-size: 1rem;
    color: white;
    text-align: center;
}

/* Événements Section */
.evenements-header {
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.evenements-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.evenements-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
}

.evenements-header-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.evenements-header-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease;
}

.evenements-header-title.in-view {
    opacity: 1;
    transform: translateX(0);
}

.evenements-header-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease 0.2s;
}

.evenements-header-subtitle.in-view {
    opacity: 1;
    transform: translateX(0);
}


.evenements-formules {
    position: relative;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.evenements-formule {
    min-width: 300px;
    margin-right: 20px;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.evenements-formule:hover {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.formule-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.formule-price {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.formule-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.formule-features {
    list-style: none;
}

.formule-feature {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.formule-feature::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.evenements-timeline {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 35px;
    height: 2px;
    background-color: rgba(212, 175, 55, 0.3);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    top: 24px;
    left: -35px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    top: 24px;
    right: -35px;
}

.timeline-dot {
    position: absolute;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.evenements-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Section */

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

#custom-map {
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.6s ease-out;
}

#custom-map.map-loaded {
    opacity: 1;
    transform: scale(1);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 10;
    pointer-events: none;
}

.map-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 10;
    pointer-events: none;
}

.contact-map {
    height: 400px;
    margin-bottom: 40px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.2);
    pointer-events: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact-card-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.contact-card-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--gold);
}

/* Footer */
footer {
    position: relative;
    overflow: hidden;
}

.footer-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
    transform: translateY(50%);
    z-index: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.social-icon.in-view {
    opacity: 1;
    transform: translateY(0);
}

.social-icon:hover {
    background-color: var(--gold);
}

.social-icon:hover svg path {
    stroke: var(--dark);
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 2px;
    animation: typing 3.5s steps(40, end);
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

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

    .chef-image,
    .chef-bio {
        width: 100%;
    }

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

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

    .menu-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0 15px;
    }

    .menu-tab {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .galerie-item {
        height: 20vh;
        padding: 0;
        width: 100%;
    }


    .evenements-formule {
        max-width: 90%;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
    }

    .timeline-content {
        width: 85%;
    }

    .timeline-item:nth-child(odd) {
        justify-content: center;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }

    .timeline-line {
        left: 0;
        transform: none;
    }

    .timeline-dot {
        top: 70px;
        left: 0px;
        transform: none;
    }

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

    .transport-info,
    .contact-info {
        width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }

    .map-container {
        width: 100%;
        margin-top: 1rem;
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .slogan {
        font-size: 2rem;
    }

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

    .nav-bubble {
        bottom: 20px;
        right: 20px;
    }

    .nav-bubble-inner {
        width: 50px;
        height: 50px;
    }

    .nav-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .map-container {
        height: 40vh;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
}

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

/* Effet de verre */
.glass-effect {
    background-color: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 5px;
}

/* Effet de reflet */
.reflection {
    position: relative;
    overflow: hidden;
}

.reflection::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    animation: reflection 8s linear infinite;
}

@keyframes reflection {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }

    100% {
        transform: rotate(30deg) translateX(100%);
    }
}

/* Effet de halo */
.halo-effect {
    position: relative;
}

.halo-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    border-radius: 50%;
}

.halo-effect:hover::before {
    width: 150%;
    height: 150%;
}

/* Effet de particules dorées */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Effet de texte brillant */
.shiny-text {
    position: relative;
    color: var(--gold);
    overflow: hidden;
}

.shiny-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Effet de bordure animée */
.animated-border {
    position: relative;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-image: linear-gradient(to right,
            var(--gold),
            transparent,
            var(--gold));
    border-image-slice: 1;
    animation: border-pulse 4s infinite;
}

@keyframes border-pulse {

    0%,
    100% {
        border-image-source: linear-gradient(to right,
                var(--gold),
                transparent,
                var(--gold));
    }

    50% {
        border-image-source: linear-gradient(to right,
                transparent,
                var(--gold),
                transparent);
    }
}

/* Effet de flou au scroll */
.blur-on-scroll {
    transition: filter 0.5s ease;
}

.blur-on-scroll.blur {
    filter: blur(5px);
}

/* Effet de parallaxe */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Effet de vague */
.wave-effect {
    position: relative;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23d4af37"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23d4af37"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23d4af37"/></svg>');
    background-size: 1200px 100%;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1200px;
    }
}

.light-trail {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
    z-index: 0;
}