/* Daylice Café - Style Principal */
/* Basé sur le design UX de temp.html */

:root {
    --color-dark: #0a1210;
    --color-dark-secondary: #151c19;
    --color-accent: #9bc53d;
    --color-accent-light: #b8d96f;
    --color-light: #f5f5f0;
    --color-cream: #ebebe5;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-text-muted: #999;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 18, 16, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--transition-smooth);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--color-accent);
}

.logo::after {
    display: none;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: white;
    left: 0;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    background: transparent;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--color-accent);
}

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

/* ==================== HERO SLIDER ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { 
    opacity: 1; 
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.1);
    transition: transform 8s ease, filter 1s;
}

.slide.active .slide-bg {
    transform: scale(1);
    filter: brightness(0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--transition-smooth) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 500;
}

.slide-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.slide-text {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    transition: all 0.4s;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s;
    border: none;
}

.slider-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ==================== PLAT DU JOUR ==================== */
.section-plat-jour {
    background: var(--color-dark);
    color: white;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-plat-jour::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155,197,61,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.plat-jour-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.plat-jour-text {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.plat-jour-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
}

.plat-name {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.plat-description {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
}

.plat-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-accent);
    font-family: 'Playfair Display', serif;
}

.plat-price span {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 400;
    margin-right: 0.3rem;
}

.plat-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.plat-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.6s var(--transition-smooth);
}

.plat-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-accent);
    color: var(--color-dark);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 20px rgba(155,197,61,0.3);
    animation: pulse 3s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Plats supplémentaires - Liste */
.daily-extra-list {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.daily-extra-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.daily-extra-item:last-child {
    border-bottom: none;
}

.daily-extra-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

.daily-extra-detail {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
    font-style: italic;
}

.daily-extra-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: 600;
    white-space: nowrap;
}

.daily-extra-price span {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    opacity: 0.9;
    margin-right: 0.3rem;
}

/* ==================== MENU SECTION ==================== */
.section-menu {
    position: relative;
    background: var(--color-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
}

.menu-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 0 0;
}

.menu-header {
    text-align: center;
    padding: 0 1.5rem 2rem;
}

.menu-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Sticky Tabs */
.menu-tabs-wrapper {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: linear-gradient(to bottom, var(--color-dark) 0%, var(--color-dark) 80%, transparent 100%);
    padding: 1rem 1.5rem 2rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(155,197,61,0.3);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.menu-tab:hover:not(.active) {
    border-color: rgba(155,197,61,0.6);
    color: rgba(255,255,255,0.9);
}

/* Menu Content */
.menu-content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 4rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.menu-content-wrapper::-webkit-scrollbar {
    width: 4px;
}

.menu-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 2rem;
    align-items: start;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
    font-style: italic;
}

.menu-item-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    min-width: 100px;
    flex-shrink: 0;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--color-accent);
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    white-space: nowrap;
}

.price-currency {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    opacity: 0.9;
    color: var(--color-accent);
}

.price-amount {
    color: var(--color-accent);
}

.sizes-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    margin-top: 0.3rem;
}

.size-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-accent);
    opacity: 0.9;
    white-space: nowrap;
}

.size-label {
    font-size: 0.75rem;
    opacity: 0.7;
    color: var(--color-accent);
    min-width: 15px;
    text-align: right;
}

.size-price {
    font-family: 'Playfair Display', serif;
    color: var(--color-accent);
    font-weight: 500;
}

.menu-item.single-price .sizes-row {
    display: none;
}

/* Loading states */
.loading {
    text-align: center;
    padding: 3rem;
    color: rgba(255,255,255,0.5);
}

.loading i {
    margin-right: 0.5rem;
}

.empty-menu {
    text-align: center;
    padding: 3rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* ==================== PROMOS SECTION ==================== */
.section-promos {
    background: var(--color-accent);
    padding: 5rem 1.5rem;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.section-promos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.promos-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promos-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.promos-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-item {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem 2rem;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    gap: 1rem;
}

.promo-item:hover {
    border-left-color: var(--color-dark);
    background: white;
}

.promo-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    font-weight: 600;
}

.promo-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-left: auto;
}

.promo-arrow {
    display: none;
}

.empty-promos {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    font-style: italic;
}

/* ==================== EXCELLENCE SECTION ==================== */
.section-excellence {
    padding: 6rem 1.5rem;
    background: var(--color-cream);
    position: relative;
}

.excellence-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235,235,229,1) 0%, rgba(245,245,240,1) 100%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.excellence-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.excellence-icon {
    width: 70px;
    height: 70px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.excellence-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    flex-shrink: 0;
}

.excellence-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.origin-list {
    text-align: left;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
}

.origin-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
    color: var(--color-text);
    justify-content: flex-start;
}

.origin-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==================== HORAIRES SECTION ==================== */
.section-horaires {
    padding: 6rem 1.5rem;
    background: var(--color-light);
    position: relative;
}

.horaires-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    pointer-events: none;
}

.horaires-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.horaire-item:last-child {
    border-bottom: none;
}

.jour {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 1rem;
}

.heures {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.ferme {
    color: #c44d4d;
    font-weight: 600;
    font-size: 1rem;
}

/* ==================== CONTACT SECTION ==================== */
.section-contact {
    background: var(--color-dark);
    color: white;
    padding: 6rem 1.5rem;
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    pointer-events: none;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

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

.contact-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.02);
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-value {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--color-accent);
}

.map-box {
    border: 1px dashed rgba(155,197,61,0.3);
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.map-box:hover {
    background: rgba(255,255,255,0.04);
    border-style: solid;
}

.map-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-address {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-map {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border: 1px solid var(--color-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-map:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

/* ==================== FOOTER ==================== */
footer {
    background: #050908;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger { 
        display: block; 
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-dark);
        padding: 6rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        transition: right 0.4s var(--transition-smooth);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active { 
        right: 0; 
    }

    .nav-link {
        white-space: normal;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link::after {
        display: none;
    }

    .menu-item {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .menu-item-price-col {
        min-width: 80px;
    }

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

/* Animation menu mobile */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
