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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --primary: #2C3E50;
    --accent: #E74C3C;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --hero-overlay: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1400px;
    gap: 40px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

#nav {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

#nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--black);
    transition: width 0.3s ease;
}

#nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.phone {
    display: none;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
    border: 2px solid #000;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #2C3E50;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #2C3E50;
    color: var(--white);
    border-color: #2C3E50;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
}

/* Hero Section */
#hero {
    min-height: 80vh;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    padding-top: 70px;
    display: flex;
    align-items: center;
}

.hero-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: auto;
    max-width: 100%;
    width: 100%;
    align-items: center;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 20px 8%;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 1rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #000;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

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

.highlight-2d {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.2rem 1.5rem;
    margin-left: -0.5rem;
    position: relative;
    transform: skew(-5deg);
    box-shadow: 12px 12px 0 rgba(0,0,0,0.08);
    animation: slideIn 0.8s ease-out 0.3s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: skew(-5deg) translateX(-50px);
    }
    to {
        opacity: 1;
        transform: skew(-5deg) translateX(0);
    }
}

.highlight-2d::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 3px solid #000;
    transform: skew(5deg);
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 1.5rem;
    border: 3px solid #000;
    background: #fff;
}

.stat {
    padding: 0.8rem;
    text-align: center;
    border-right: 3px solid #000;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-actions .btn-primary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

.btn-call {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid #000;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-call:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #000;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.hero-info span:nth-child(2) {
    color: #000;
    font-weight: 800;
}

.hero-right {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image-grid {
    position: relative;
    width: 100%;
    height: 550px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    transform: rotate(-3deg);
}

.grid-item {
    position: relative;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.grid-item.large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.6s ease;
}

.grid-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.1);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 3px solid #000;
}

.hero-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: #fff;
    color: #000;
    padding: 2rem;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #000;
    transform: rotate(12deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

.badge-content {
    text-align: center;
    transform: rotate(-12deg);
}

.badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
}

.badge-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-content small {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
    );
    pointer-events: none;
}

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

/* Concept Section */
#concept {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&q=80') center/cover fixed;
    color: #fff;
    position: relative;
}

#concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    pointer-events: none;
}

#concept h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 80px;
    font-weight: 400;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
    border: 3px solid #fff;
}

.concept-card {
    background: #000;
    padding: 60px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height 0.4s ease;
    z-index: 0;
}

.concept-card:hover::before {
    height: 100%;
}

.concept-card:hover {
    color: #000;
}

.concept-card > * {
    position: relative;
    z-index: 1;
}



.concept-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.concept-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.concept-card:hover p {
    color: #666;
}

/* Menu Section */
#menu {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

#menu h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 800;
    letter-spacing: -2px;
}

#menu .subtitle {
    color: #666;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 4px solid #000;
    margin-bottom: 60px;
}

.menu-column {
    padding: 60px;
    border-right: 4px solid #000;
}

.menu-column:last-child {
    border-right: none;
}

.menu-column h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    padding-bottom: 20px;
    border-bottom: 3px solid #000;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    padding: 8px 0;
}

.menu-item span:first-child {
    flex: 1;
}

.dots {
    display: none;
}

.price {
    font-weight: 800;
    font-size: 1.1rem;
}

.highlight-box {
    background: #000;
    color: #fff;
    padding: 30px;
    margin-top: 40px;
    border: none;
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #000;
}

.highlight-box.special {
    background: #000;
}

.highlight-box strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 800;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 8px;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

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

/* Specialties Section */
#specialites {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover fixed;
    color: #fff;
    position: relative;
}

#specialites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    pointer-events: none;
}

#specialites h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

#specialites .subtitle {
    color: rgba(255,255,255,0.7);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 4px solid #fff;
    margin-bottom: 80px;
}

.specialty-item {
    padding: 60px;
    border-right: 4px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.specialty-item:last-child {
    border-right: none;
}

.specialty-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 4px solid #fff;
}

.specialty-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.specialty-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
    border: 4px solid #fff;
}

.key-points span {
    background: #000;
    padding: 30px 20px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.key-points span:hover {
    background: #fff;
    color: #000;
}

/* Events Section */
#evenements {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

#evenements h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

#evenements .subtitle {
    color: #666;
}

.event-main {
    text-align: center;
    margin-bottom: 80px;
}

.event-main h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.event-main p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #000;
    border: 4px solid #000;
}

.event-types span {
    background: #fff;
    color: #000;
    padding: 30px 20px;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.event-types span:hover {
    background: #000;
    color: #fff;
}

.event-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #000;
    border: 4px solid #000;
    margin-bottom: 60px;
}

.benefit-card {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: #000;
    color: #fff;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.benefit-card:hover p {
    color: rgba(255,255,255,0.8);
}

.conditions {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

/* Gallery Section */
#galerie {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1920&q=80') center/cover fixed;
    color: #fff;
    position: relative;
}

#galerie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    pointer-events: none;
}

#galerie h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

#galerie .subtitle {
    color: rgba(255,255,255,0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
    border: 4px solid #fff;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Hours Section */
#horaires {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

#horaires h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

#horaires .subtitle {
    color: #666;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #000;
    border: 4px solid #000;
    margin-bottom: 60px;
}

.hours-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.hours-card:hover {
    background: #000;
    color: #fff;
}

.hours-card.special {
    background: #000;
    color: #fff;
}

.hours-card.special:hover {
    background: #fff;
    color: #000;
}

.day {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time {
    font-size: 1rem;
    font-weight: 600;
}

.special-note {
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
}

.hours-card.special .special-note {
    color: rgba(255,255,255,0.8);
}

.hours-card.special:hover .special-note {
    color: #666;
}

.hours-note {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

.hours-note p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.friday-special {
    background: #000;
    color: #fff;
    padding: 50px;
    text-align: center;
    border: 4px solid #000;
    position: relative;
}

.friday-special::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 4px solid #000;
}

.friday-special strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.friday-special p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

#horaires .section-cta {
    margin-top: 60px;
}

/* Contact Section */
#contact {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80') center/cover fixed;
    color: #fff;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    pointer-events: none;
}

#contact h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #fff;
    border: 4px solid #fff;
}

.contact-info {
    background: #000;
    padding: 60px;
}

.contact-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #333;
}

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

.contact-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.contact-map {
    background: #000;
    padding: 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-actions .btn-primary {
    width: 100%;
    justify-content: center;
}

.contact-access {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: #fff;
    border: 4px solid #fff;
    margin-top: 40px;
}

.contact-access span {
    background: #000;
    padding: 20px;
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-access span:hover {
    background: #fff;
    color: #000;
}

/* Footer */
footer {
    background: #fff;
    color: #000;
    padding: 80px 0 0;
    border-top: 4px solid #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #000;
    border: 4px solid #000;
    margin-bottom: 0;
}

.footer-col {
    background: #fff;
    padding: 60px 40px;
    transition: all 0.4s ease;
}

.footer-col:hover {
    background: #000;
    color: #fff;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-col p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col:hover p {
    color: rgba(255,255,255,0.8);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col > a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-col:hover > a {
    color: #fff;
}

.footer-col > a:hover {
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 40px 0;
    background: #000;
    color: rgba(255,255,255,0.6);
    margin-top: 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: var(--transition);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive */


@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 60px 40px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-right {
        min-height: 500px;
    }
    
    .hero-image-grid {
        height: 500px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-column {
        border-right: none;
        border-bottom: 4px solid #000;
    }
    
    .menu-column:last-child {
        border-bottom: none;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-item {
        border-right: none;
        border-bottom: 4px solid #fff;
    }
    
    .specialty-item:last-child {
        border-bottom: none;
    }
    
    .key-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-benefits {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 2px solid #fff;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        border-right: none;
        border-bottom: 2px solid #000;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    #header .container {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    #nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
        margin: 0;
    }
    
    #nav.active {
        left: 0;
    }
    
    #nav a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
        order: 3;
    }
    
    .header-cta {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-cta .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    #hero {
        padding-top: 60px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat {
        padding: 0.8rem 0.5rem;
    }
    
    .stat strong {
        font-size: 1.2rem;
    }
    
    .stat span {
        font-size: 0.65rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-call {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-right {
        min-height: 400px;
        padding: 2rem;
    }
    
    .hero-image-grid {
        height: 400px;
    }
    
    .hero-badge {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
        top: 2rem;
        right: 2rem;
    }
    
    .badge-content strong {
        font-size: 0.8rem;
    }
    
    .badge-content small {
        font-size: 0.6rem;
    }
    
    #concept,
    #menu,
    #specialites,
    #evenements,
    #galerie,
    #horaires,
    #contact {
        padding: 80px 0;
    }
    
    h2 {
        font-size: 2.5rem !important;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .concept-card {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 2px solid #fff;
    }
    
    .concept-card:last-child {
        border-bottom: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-column {
        padding: 40px 30px;
    }
    
    .menu-column h3 {
        font-size: 1.5rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-item {
        padding: 40px 30px;
    }
    
    .specialty-img img {
        height: 250px;
    }
    
    .key-points {
        grid-template-columns: 1fr;
    }
    
    .event-main h3 {
        font-size: 1.8rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .event-types span {
        padding: 20px;
        font-size: 1rem;
    }
    
    .event-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 2px solid #000;
    }
    
    .benefit-card:last-child {
        border-bottom: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 2px solid #000;
    }
    
    .hours-card:last-child {
        border-bottom: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-map {
        border-right: none;
    }
    
    .contact-map iframe {
        min-height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    #header .container {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .header-cta .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-left {
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .stat strong {
        font-size: 1.5rem;
    }
    
    .stat span {
        font-size: 0.75rem;
    }
    
    .hero-right {
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .hero-image-grid {
        height: 300px;
    }
    
    .hero-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .concept-card,
    .menu-column,
    .specialty-item,
    .benefit-card,
    .contact-info,
    .footer-col {
        padding: 30px 20px;
    }
    
    .menu-column h3 {
        font-size: 1.3rem;
    }
    
    .event-main h3 {
        font-size: 1.5rem;
    }
    
    .event-types span {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
}
