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

:root {
    --primary-color: #b80e0d;
    --secondary-color: #c94517;
    --accent-color: #ecb42a;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --text-white: #ffffff;
    --white: #FFFFFF;
    --light-bg: #fafafa;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.hero-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 14, 13, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 14, 13, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 14, 13, 0.3);
}

.btn-secondary.btn-lg {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(236, 180, 42, 0.18);
    transition: var(--transition);
}

.btn-secondary.btn-lg:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 180, 42, 0.28);
    transform: translateY(-2px) scale(1.04);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 2px solid rgba(184, 14, 13, 0.1);
}

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

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

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
}

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

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

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

/* HERO FULL WIDTH CAROUSEL + TYPEWRITER */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    height: 100vh;
    background: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.hero-carousel {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.carousel-slide img {
    width: 100vw;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #f7f7f7;
}
.hero-content-section {
    width: 100%;
    background: none;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width: 1024px) {
    .hero-carousel { height: 60vh; min-height: 60vh; }
}
@media (max-width: 768px) {
    .hero-carousel { height: 40vh; min-height: 40vh; }
    .hero-content-section { padding-top: 1.2rem; }
}
@media (max-width: 480px) {
    .hero-carousel { height: 28vh; min-height: 28vh; }
    .hero-content-section { padding-top: 0.5rem; }
}
.hero-logo {
    margin-bottom: 1.2rem;
}
.hero-typewriter {
    font-size: 1.18rem;
    color: var(--primary-color);
    background: rgba(255,255,255,0.92);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(184, 14, 13, 0.07);
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 3.5em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.hero-typewriter::after {
    content: '';
    display: inline-block;
    width: 1ch;
    height: 1.2em;
    background: var(--primary-color);
    margin-left: 4px;
    vertical-align: bottom;
    animation: blink-cursor 1s steps(1) infinite;
}
@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@media (max-width: 600px) {
    .hero-typewriter {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
        max-width: 98vw;
    }
    .hero-cta {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
}
/* Hide old hero-image styles */
.hero-image { display: none !important; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(184, 14, 13, 0.02) 0%, rgba(201, 69, 23, 0.02) 100%);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.menu-category:hover .category-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.menu-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dietary-info {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-gluten {
    background: var(--secondary-color);
    color: var(--white);
}

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

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--white);
}

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

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

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(236, 180, 42, 0.02) 0%, rgba(184, 14, 13, 0.02) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.closed-notice {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem !important;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.map-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive pour la section contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 1.5rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.news-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-color);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Social Section */
.social-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(201, 69, 23, 0.02) 0%, rgba(236, 180, 42, 0.02) 100%);
}

.social-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.social-feed h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.insta-img-link {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.insta-img-link:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 24px rgba(184,14,13,0.13);
}

.insta-img-link img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: filter 0.2s;
    filter: brightness(0.98) contrast(1.08);
}

.instagram-placeholder {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(184, 14, 13, 0.1);
}

.instagram-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    color: var(--text-light);
    margin: 0;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-color);
}

.social-btn.instagram {
    border-left-color: #E4405F;
}

.social-btn.facebook {
    border-left-color: #1877F2;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn span {
    font-weight: 600;
    color: var(--text-dark);
}

.social-btn small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(236, 180, 42, 0.3);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .reservations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(236, 180, 42, 0.05) 0%, rgba(184, 14, 13, 0.05) 100%);
}

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

.google-reviews {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

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

.rating-count {
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating-count strong {
    font-weight: 700;
    color: var(--primary-color);
}

.google-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.google-link:hover {
    color: var(--secondary-color);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.review-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

.cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-buttons .btn {
    justify-content: center;
}

/* Responsive for Reviews */
@media (max-width: 768px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .google-rating {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Reviews Loading and Error States */
.reviews-loading,
.reviews-error {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 2px dashed var(--border-color);
}

.reviews-loading i,
.reviews-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reviews-loading i {
    color: var(--accent-color);
    animation: spin 1s linear infinite;
}

.reviews-error i {
    color: var(--primary-color);
}

.reviews-loading p,
.reviews-error p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Review Card Enhancements */
.review-card {
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Enhanced Stars */
.review-stars i.fas {
    color: var(--accent-color);
}

.review-stars i.far {
    color: #ddd;
}

/* Review Text Enhancement */
.review-text {
    position: relative;
    padding-left: 1rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    font-family: serif;
}

/* Mock Indicator */
.mock-indicator {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.mock-indicator i {
    font-size: 1rem;
}

.mock-indicator a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.mock-indicator a:hover {
    color: var(--text-dark);
    text-decoration: none;
}

/* Enhanced Review Styles for Static Reviews */
.reviewer-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.local-guide-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review-count,
.photos-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.price-range {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.review-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.review-badges .badge {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.review-badges .badge.visit-type {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Effet sur la description hero */
.hero-desc-effect {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    font-size: 1.15rem;
    color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(184, 14, 13, 0.07);
    transition: box-shadow 0.3s, background 0.3s;
    margin-bottom: 1.5rem;
}
.hero-desc-effect:hover {
    background: rgba(236, 180, 42, 0.13);
    box-shadow: 0 4px 24px rgba(201, 69, 23, 0.13);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(184, 14, 13, 0.08);
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.carousel-dots .dot.active {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 220px;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .hero-carousel {
        height: 140px;
    }
    .hero-desc-effect {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* HERO IMMERSIVE BANNER */
.hero-immersive {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #000;
    padding: 0;
}
.hero-carousel {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    left: 0;
    transform: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.hero-carousel .carousel-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: #000;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, rgba(0,0,0,0.55) 60%, rgba(184,14,13,0.25) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-immersive-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 7vw;
    color: #fff;
    width: 100vw;
    max-width: 100vw;
    text-align: center;
}
.hero-immersive-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
    justify-content: center;
}
.hero-immersive-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.hero-immersive-title {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.hero-immersive-infos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-immersive-hours {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.13);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 16px;
    padding: 0.7em 1.3em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-immersive-hours i {
    color: var(--accent-color);
    font-size: 1.2em;
}
.hero-jours {
    margin-left: 0.7em;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1em;
}
.hero-punchlines {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.punchline {
    background: rgba(236,180,42,0.95);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 20px;
    padding: 0.7em 1.3em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.punchline:hover {
    background: var(--primary-color);
    color: #fff;
}
.hero-immersive-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}
.btn-lg {
    font-size: 1.18rem;
    padding: 1.1em 2.2em;
    border-radius: 2em;
}
@media (max-width: 1024px) {
    .hero-immersive-content {
        padding: 0 3vw;
    }
    .hero-immersive-title {
        font-size: 2rem;
    }
    .hero-immersive-logo {
        height: 60px;
    }
    .hero-punchlines {
        gap: 0.7rem;
    }
    .hero-immersive-infos {
        gap: 1.2rem;
    }
}
@media (max-width: 700px) {
    .hero-immersive-content {
        align-items: center;
        padding: 0 1vw;
        text-align: center;
    }
    .hero-immersive-header {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        justify-content: center;
    }
    .hero-immersive-title {
        font-size: 1.3rem;
    }
    .hero-immersive-logo {
        height: 40px;
    }
    .hero-punchlines {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }
    .hero-immersive-infos {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        justify-content: center;
    }
    .hero-immersive-btns {
        flex-direction: column;
        gap: 0.7rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.8em 1.2em;
    }
}
@media (max-width: 480px) {
    .hero-immersive-content {
        padding: 0 0.5vw;
    }
    .hero-immersive-title {
        font-size: 1.05rem;
    }
    .hero-immersive-logo {
        height: 28px;
    }
}

/* FOOTER STYLED */
.footer-styled {
    background: linear-gradient(120deg, #fff 60%, #f7f7f7 100%);
    color: var(--text-dark);
    font-size: 1.08rem;
    box-shadow: 0 -2px 24px rgba(0,0,0,0.07);
    border-top: 2px solid var(--accent-color);
    padding-top: 2.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.footer-logo-section {
    align-items: flex-start;
    gap: 1.2rem;
}
.footer-logo-img {
    height: 60px;
    width: auto;
    filter: none;
    margin-bottom: 0.5rem;
}
.footer-desc {
    color: var(--secondary-color);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.7rem;
}
.footer-social a {
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(184,14,13,0.08);
}
.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.13);
}
.footer-separator {
    display: none;
    height: 100%;
    width: 2px;
    background: var(--border-color);
    margin: 0 1.2rem;
}
.footer-hours, .footer-days, .footer-closed {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 1.08rem;
    color: var(--primary-color);
    font-weight: 600;
}
.footer-closed {
    color: #b80e0d;
}
.footer-section h4 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7em;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}
.footer-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact-item a:hover {
    color: var(--secondary-color);
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-section ul li a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.01rem;
    background: none;
}
@media (min-width: 900px) {
    .footer-content {
        grid-template-columns: 1.2fr 0.05fr 1fr 0.05fr 1fr 0.05fr 1fr;
    }
    .footer-separator {
        display: block;
    }
}
@media (max-width: 700px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-separator {
        display: none;
    }
    .footer-logo-img {
        height: 40px;
    }
}

.lightbox .menu-carousel-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
    display: block;
    margin: 0 auto;
}
.lightbox .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(184, 14, 13, 0.08);
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, color 0.2s;
}
.lightbox .carousel-btn.prev { left: 10px; }
.lightbox .carousel-btn.next { right: 10px; }
.lightbox .carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.lightbox .carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}
.lightbox .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.lightbox .carousel-dots .dot.active {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}
@media (max-width: 700px) {
    .lightbox .menu-carousel-img {
        max-width: 98vw;
        max-height: 60vh;
    }
    .lightbox .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

.instagram-embed {
    width: 100%;
    min-height: 340px;
    border: none;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin: 0 auto;
    display: block;
    max-width: 100%;
}
@media (max-width: 700px) {
    .instagram-embed {
        min-height: 220px;
    }
}

.news-text {
    max-height: 3.6em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-text.expanded {
    max-height: 100vh;
    -webkit-line-clamp: unset;
}
.news-more {
    display: none;
}
.news-text.expanded .news-more {
    display: inline;
}
.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 0.3em;
    transition: color 0.2s;
    padding: 0;
    text-align: left;
}
.read-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1.1rem 2.2rem 1.1rem 2.2rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.hero-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.18rem;
    color: var(--primary-color);
    justify-content: center;
    text-align: center;
    font-weight: 700;
}
.hero-hours i {
    color: var(--secondary-color);
    font-size: 1.3em;
}
.hero-social {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}
.hero-social a {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(184,14,13,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-social a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.12);
}

/* Styles pour la page de réservation */
.reservation-main {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reservation-section {
    padding: 60px 0;
}

.reservation-step {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(184, 14, 13, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reservation-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 20px 20px 0 0;
}

.reservation-step.hidden {
    display: none;
}

.reservation-step h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.reservation-step h3 i {
    margin-right: 12px;
    color: var(--secondary-color);
    font-size: 1.6rem;
}

/* Sélecteur de date amélioré */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 14, 13, 0.1);
    transform: translateY(-2px);
}

/* Affichage de la date sélectionnée */
.date-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(184, 14, 13, 0.2);
    animation: slideInDown 0.6s ease-out;
}

.date-display i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--accent-color);
}

.date-display span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Grille des créneaux horaires */
.time-slots-container {
    margin: 30px 0;
}

.time-slots-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-light);
}

.time-slots-loading i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.time-slot-btn {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.time-slot-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.time-slot-btn:hover::before {
    left: 100%;
}

.time-slot-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(184, 14, 13, 0.15);
}

.time-slot-btn.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 14, 13, 0.3);
}

.time-slot-btn.selected .time {
    color: white;
}

.time-slot-btn.selected .availability {
    color: rgba(255, 255, 255, 0.9);
}

.time-slot-btn.disabled {
    background: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.time-slot-btn .time {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.time-slot-btn .availability {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.time-slot-btn .availability.available {
    color: #28a745;
}

.time-slot-btn .availability.limited {
    color: #ffc107;
}

/* Message d'absence de créneaux */
.no-slots-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.no-slots-message i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-slots-message p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Résumé de réservation */
.reservation-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}

.summary-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

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

.summary-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.summary-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Boutons d'étape */
.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.step-buttons .btn {
    flex: 1;
    max-width: 200px;
    justify-content: center;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
}

/* Message de confirmation */
.confirmation-message {
    text-align: center;
    padding: 20px;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out;
}

.confirmation-message h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 2rem;
}

.confirmation-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirmation-details {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

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

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.detail-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.confirmation-actions .btn {
    min-width: 180px;
    justify-content: center;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .reservation-step {
        margin: 0 20px;
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .reservation-step h3 {
        font-size: 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .time-slot-btn {
        padding: 15px 10px;
    }
    
    .time-slot-btn .time {
        font-size: 1.1rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-buttons .btn {
        max-width: 100%;
        width: 100%;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .reservation-step {
        margin: 0 15px;
        padding: 25px 20px;
    }
    
    .reservation-step h3 {
        font-size: 1.3rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slot-btn {
        padding: 12px 8px;
    }
    
    .time-slot-btn .time {
        font-size: 1rem;
    }
    
    .time-slot-btn .availability {
        font-size: 0.8rem;
    }
    
    .confirmation-message {
        padding: 15px;
    }
    
    .confirmation-icon {
        font-size: 3rem;
    }
    
    .confirmation-message h3 {
        font-size: 1.5rem;
    }
}

/* Calendrier personnalisé */
.calendar-container {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.calendar-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 14, 13, 0.1);
    transform: translateY(-2px);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.calendar-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    flex: 1;
}

.calendar-nav-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 14, 13, 0.2);
}

.calendar-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(184, 14, 13, 0.3);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-nav-btn i {
    font-size: 0.9rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 8px 0;
    border-radius: 8px;
    background: rgba(184, 14, 13, 0.05);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    background: #f8f9fa;
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 14, 13, 0.2);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(184, 14, 13, 0.3);
    transform: scale(1.05);
}

.calendar-day.selected::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: bold;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
    opacity: 0.5;
}

.calendar-day.other-month {
    color: #ccc;
    background: #fafafa;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid var(--accent-color);
    background: rgba(236, 180, 42, 0.1);
    font-weight: 700;
}

.calendar-day.today:not(.selected):hover {
    background: rgba(236, 180, 42, 0.2);
}

/* Animation d'entrée pour le calendrier */
.calendar-container {
    animation: slideInUp 0.6s ease-out;
}

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

/* Responsive pour le calendrier */
@media (max-width: 768px) {
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-header h4 {
        font-size: 1.1rem;
    }
    
    .calendar-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .calendar-weekdays div {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .calendar-container {
        padding: 12px;
    }
    
    .calendar-header h4 {
        font-size: 1rem;
    }
    
    .calendar-nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .calendar-nav-btn i {
        font-size: 0.8rem;
    }
    
    .calendar-weekdays div {
        font-size: 0.75rem;
        padding: 4px 0;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
} 

/* Styles spécifiques pour les slides du carousel immersif */
.hero-carousel .carousel-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Styles pour les dots du carousel immersif */
.hero-carousel .carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

.hero-carousel .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-carousel .carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-carousel .carousel-dots .dot.active {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(236, 180, 42, 0.4);
} 