/*
Theme Name: Creperia Theme
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

Theme URI: https://creperia.ro
Author: Echipa Creperia
Description: Temă custom pentru noul site Creperia, modernă și rapidă.
Version: 1.0
*/

/* --- Variabile Globale (Culori & Fonturi) --- */
:root {
    --color-accent: #0F4C3A; /* Acesta este verdele RAL 6005 */
    --color-background: #FAFAFA; /* Un fundal foarte curat, ușor ivoire */
    --color-text: #333333; /* Gri închis pentru text, mai elegant decât negru pur */
    --color-white: #FFFFFF;
    
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* --- Reset & Bază --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Test pentru a vedea că fișierul funcționează */
h1 {
    color: var(--color-accent);
    text-align: center;
    margin-top: 50px;
}
/* --- Structură generală --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigare --- */
.site-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* O umbră fină sub meniu */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 24px;
    font-weight: bold;
}

.logo a h2 {
    margin: 0;
    color: var(--color-accent); /* Logo-ul text ia culoarea verde RAL 6005 */
}

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: var(--color-accent);
}

/* =========================================
   NAVIGARE PREMIUM - TOATE BUTOANELE VERZI
   ========================================= */

/* 1. Aliniere logo și meniu pe același rând */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* 2. Resetare listă meniu */
.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px; /* Spațiu între butoane */
    align-items: center;
}

/* 3. Stilul de BUTON pentru toate link-urile din meniu */
.main-menu ul li a {
    background-color: #1d4331 !important; /* Verde RAL 6005 */
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important; /* Formă de pastilă */
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: 2px solid #1d4331 !important; /* Adăugăm o bordură pentru consistență */
}

/* 4. Efect de Hover (interactivitate) */
.main-menu ul li a:hover {
    background-color: #132b20 !important; /* Verde mai închis la atingere */
    border-color: #132b20 !important;
    transform: translateY(-2px); /* Se ridică ușor */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 5. Eliminăm orice stil special vechi pentru butonul de franciză 
   ca să fie egal cu celelalte */
.btn-franchise {
    /* Nu mai avem nevoie de stil special aici, 
       regula de mai sus le prinde pe toate */
}

/* Ajustare logo ca să nu fie lipit de margini */
.logo h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 1.8rem;
}
/* =========================================
   HERO SECTION - LOGO IMAGE & WIDE BAND
   ========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Lățim zona Hero: 85% din înălțimea ecranului */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Fundal negru până se încarcă video/imaginea */
}

/* Video/Imagine Fundal care acoperă tot */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay întunecat pentru contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Întunecăm fundalul ca să se vadă logo-ul alb */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Pune totul peste overlay */
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- STILIZARE LOGO CENTRAL IMAGE --- */
.hero-logo {
    width: 100%;
    max-width: 450px; /* Dimensiunea maximă a logo-ului (impunător, dar nu uriaș) */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3)); /* Adăugăm o umbră fină ca să 'sară' în evidență */
}

/* Sloganul cursiv sub logo */
.slogan-hero-script {
    font-family: 'SantElia Script', 'Dancing Script', cursive; /* Fontul tău cursiv superb */
    color: #ffffff !important;
    font-size: 2.2rem !important;
    margin-bottom: 35px;
    font-weight: normal;
}

/* Butoanele din Hero */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- ADAPTARE UX: ASCUNDEM LOGO HEADER DOAR PE ACASĂ --- */
/* Deoarece avem logo-ul central uriaș, îl ascundem pe cel mic din stânga sus 
   doar când suntem pe pagina de start (.home) */
.home .site-header .logo {
    visibility: hidden; /* Îl ascundem, dar păstrăm spațiul pentru alinierea meniului */
}

/* Adaptare pentru ecrane mici (mobil) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    .hero-logo {
        max-width: 300px; /* Logo mai mic pe mobil */
    }
    .slogan-hero-script {
        font-size: 1.6rem !important;
    }
}

/* --- Butoane Generale --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px; /* Butoane rotunjite, moderne și prietenoase */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}
/* --- Scurt Despre Noi --- */
.about-teaser-section {
    padding: 100px 0; /* Spațiu generos sus și jos, ca să "respire" conținutul */
    background-color: var(--color-background); /* Fundalul curat definit la început */
}

.about-teaser-inner {
    display: flex;
    gap: 60px; /* Spațiu între text și imagine */
    align-items: center; /* Aliniere verticală pe centru */
}

.about-text {
    flex: 1; /* Ocupă jumătate din spațiu */
}

.about-text h2 {
    font-size: 2.5rem; /* Un titlu mare și clar */
    color: var(--color-accent); /* Verde RAL 6005 pentru titlu */
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* Butonul simplu cu text */
.btn-text {
    text-decoration: none;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-text:hover {
    color: #0b382b; /* Un verde mai închis la hover */
}

.about-image {
    flex: 1; /* Ocupă cealaltă jumătate a containerului */
}

.about-image img {
    max-width: 100%; /* Să nu depășească coloana ei */
    height: auto;
    border-radius: 10px; /* Margini rotunjite elegante, ca la butoane */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* O umbră fină pentru a-i da adâncime */
}
/* --- Teaser Meniu --- */
.menu-teaser-section {
    padding: 80px 0;
    background-color: var(--color-white); /* Trecem înapoi la alb curat pentru a scoate pozele în evidență */
}

.menu-teaser-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-teaser-header h2 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.menu-teaser-header p {
    font-size: 1.2rem;
    color: #666;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Împarte spațiul în 3 coloane egale */
    gap: 30px; /* Spațiu între cele 3 carduri */
}

/* Stilizarea cardurilor */
.menu-card {
    text-decoration: none;
    color: var(--color-text);
    background-color: var(--color-background);
    border-radius: 15px;
    overflow: hidden; /* Taie colțurile pozei ca să respecte marginile rotunjite */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

/* Efectul de ridicare a întregului card */
.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden; /* Ascunde ce iese din poză la zoom */
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asigură că poza acoperă tot spațiul fără să se deformeze */
    transition: transform 0.5s ease;
}

/* Efectul de zoom pe imagine când treci cu mouse-ul peste card */
.menu-card:hover .menu-card-image img {
    transform: scale(1.1); /* Mărește poza cu 10% */
}

.menu-card-title {
    padding: 20px;
    text-align: center;
}

.menu-card-title h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--color-text);
}

.menu-card-title span {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--color-accent); /* Săgeata și textul mic iau culoarea verde */
}

.menu-teaser-footer {
    text-align: center;
    margin-top: 50px;
}
/* --- Secțiunea Franciză --- */
.franchise-section {
    padding: 100px 0;
    /* Folosim o imagine de fundal cu locație/business, acoperită de verdele RAL 6005 transparent (90%) */
    background: linear-gradient(rgba(15, 76, 58, 0.9), rgba(15, 76, 58, 0.9)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: var(--color-white);
    text-align: center;
    margin-top: 50px;
}

.franchise-content {
    max-width: 800px;
    margin: 0 auto;
}

.franchise-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-white); /* Titlu alb pe fundalul verde */
}

.franchise-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Stilizare specială pentru butonul de pe fundalul verde */
.btn.inverted {
    background-color: var(--color-white);
    color: var(--color-accent); /* Textul butonului ia culoarea verde */
    border-color: var(--color-white);
}

.btn.inverted:hover {
    background-color: transparent;
    color: var(--color-white);
}
/* =========================================
   PAGINA FRANCIZĂ
   ========================================= */

/* Beneficii */
.benefits-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--color-accent); /* O linie fină verde jos */
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Formularul */
.apply-section {
    padding: 40px 0 100px;
}

.apply-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.apply-box h2 {
    color: var(--color-accent);
    margin-bottom: 10px;
}

.apply-box p {
    margin-bottom: 30px;
    color: #666;
}

.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.franchise-form input,
.franchise-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: #f9f9f9;
}

.franchise-form input:focus,
.franchise-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 5px rgba(15, 76, 58, 0.2);
    background-color: var(--color-white);
}

/* Adaptare pentru mobil (Formular și Beneficii) */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* O singură coloană pe mobil */
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .apply-box {
        padding: 30px 20px;
    }
}
/* Notificări Formular */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* =========================================
   CARUSEL CSS PENTRU PAGINA FRANCIZĂ
   ========================================= */

.page-hero-slider {
    position: relative;
    width: 100%;
    height: 450px; /* Înălțimea secțiunii de sus */
    overflow: hidden; /* Ascundem ce iese din cadru */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Containerul slider-ului */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Stă în spate */
}

/* Regulă generală pentru fiecare imagine (slide) */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Ascundem imaginile inițial */
    opacity: 0;
    
    /* Pornim animația numită "crossfade" */
    /* Durata totală: 18 secunde (6s per imagine), infinit */
    animation: crossfade 18s linear infinite; 
}

/* Definirea animației CSS */
@keyframes crossfade {
    /* 0% - 10%: Imaginea se face vizibilă (Fade In) */
    0% { opacity: 0; }
    10% { opacity: 1; }
    
    /* 10% - 33%: Imaginea rămâne vizibilă solid */
    33% { opacity: 1; }
    
    /* 33% - 43%: Imaginea dispare încet (Fade Out) */
    43% { opacity: 0; }
    
    /* Restul timpului rămâne ascunsă, cât rulează celelalte */
    100% { opacity: 0; }
}

/* Decalăm pornirea animației pentru fiecare imagine ca să nu ruleze toate deodată */

/* Prima imagine pornește imediat */
.slide:nth-child(1) {
    animation-delay: 0s;
}

/* A doua imagine pornește după 6 secunde */
.slide:nth-child(2) {
    animation-delay: 6s;
}

/* A treia imagine pornește după 12 secunde */
.slide:nth-child(3) {
    animation-delay: 12s;
}

/* Suprapunerea întunecată peste poze */
.page-hero-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Filtru negru 50% transparent */
    z-index: 2; /* Deasupra pozelor */
}

/* Conținutul text care stă deasupra tuturor */
.hero-slider-content {
    position: relative;
    z-index: 3; /* Deasupra filtrului negru */
    color: var(--color-white);
}

.hero-slider-content h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* O umbră fină pentru text */
}

.hero-slider-content p {
    color: var(--color-white);
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Adaptare pentru mobil */
@media (max-width: 768px) {
    .page-hero-slider {
        height: 350px; /* Mai mic pe mobil */
    }
    .hero-slider-content h1 {
        font-size: 2.2rem;
    }
}
/* =========================================
   PAGINA DE MENIU
   ========================================= */

.menu-hero {
    background-color: var(--color-background);
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.menu-hero h1 {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.menu-hero p {
    font-size: 1.2rem;
    color: #666;
}

.menu-items-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.menu-category {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-title {
    font-size: 2rem;
    color: var(--color-text);
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Spațiul între produse */
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--color-background);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.item-info {
    flex: 1; /* Ocupă tot spațiul rămas stânga */
}

.item-name {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between; /* Aruncă prețul în dreapta numelui */
    align-items: center;
    border-bottom: 1px dashed #ccc; /* O linie punctată elegantă până la preț */
    padding-bottom: 5px;
}

.item-price {
    color: var(--color-accent); /* Prețul în verde */
    font-weight: bold;
    font-size: 1.3rem;
    background: var(--color-background);
    padding-left: 10px;
    margin-bottom: -6px; /* Ajustează alinierea pe linia punctată */
}

.item-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0; /* Previne turtirea pozei pe ecrane mici */
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Adaptare pentru mobil (Meniu) */
@media (max-width: 600px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-image {
        width: 100%;
        height: 200px; /* Poza se face mare și se duce sus pe mobil */
        margin-top: 15px;
    }

    .item-name {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
        gap: 5px;
    }

    .item-price {
        padding-left: 0;
        margin-bottom: 0;
    }
}
/* =========================================
   PAGINA DESPRE NOI
   ========================================= */

.about-hero {
    background-color: var(--color-accent);
    padding: 80px 0;
    color: var(--color-white);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.story-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.story-inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Secțiunea Viziune */
.vision-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.vision-header {
    margin-bottom: 50px;
}

.vision-header h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Adaptare pentru mobil (Despre Noi) */
@media (max-width: 768px) {
    .story-inner {
        flex-direction: column;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* Sloganul Cursiv (SantElia Script) */
.slogan-script {
    font-family: 'SantElia Script', 'Dancing Script', cursive; /* Caută SantElia, dacă nu, pune Dancing Script */
    font-size: 3rem !important; /* Îl facem mai mare, fonturile de mână au nevoie de spațiu */
    color: var(--color-white);
    font-weight: normal;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* O umbră ca să iasă în evidență */
}
/* =========================================
   ANIMAȚII REFINATE (Abur Abundent și Săgeată Fină)
   ========================================= */

.hero-relative {
    position: relative;
    padding-bottom: 80px;
}

/* --- ABUR ANCORAT DE TEXT --- */

.slogan-container {
    position: relative;
    display: inline-block; /* Face containerul exact cât e textul de lung */
    margin-top: 20px;
}

.slogan-script {
    position: relative;
    z-index: 5; /* Textul stă deasupra aburului */
    margin: 0;
    font-family: 'SantElia Script', 'Dancing Script', cursive;
    font-size: 3.5rem !important;
    color: var(--color-white);
}

.steam-box {
    position: absolute;
    top: 50%; /* Pornește de la jumătatea textului în jos */
    left: 0;
    width: 100%; /* Se întinde fix cât e textul de lung */
    height: 100px;
    z-index: 1; /* Stă în spatele literelor */
    pointer-events: none;
}

.steam-part {
    position: absolute;
    bottom: 0;
    width: 80px; 
    height: 60px;
    background-color: rgba(255, 255, 255, 0.4); 
    border-radius: 50%;
    filter: blur(25px); /* Efect de ceață difuză */
    opacity: 0;
    animation: steamUp 5s infinite ease-out;
}

/* Distribuim particulele de-a lungul textului */
.steam-part:nth-child(1) { left: 5%;  animation-delay: 0s; }
.steam-part:nth-child(2) { left: 25%; animation-delay: 1.5s; width: 120px; }
.steam-part:nth-child(3) { left: 45%; animation-delay: 0.5s; }
.steam-part:nth-child(4) { left: 65%; animation-delay: 2s; width: 100px; }
.steam-part:nth-child(5) { left: 85%; animation-delay: 1s; }
.steam-part:nth-child(6) { left: 50%; animation-delay: 3s; opacity: 0.5; }

@keyframes steamUp {
    0% { 
        transform: translateY(0) scale(1); 
        opacity: 0; 
    }
    30% { 
        opacity: 0.6; /* Devine vizibil chiar sub litere */
    }
    100% { 
        transform: translateY(-80px) scale(2); /* Se ridică peste litere și dispare */
        opacity: 0; 
    }
}

/* Săgeata fină */
.scroll-down-arrow {
    display: block;
    margin: 50px auto 0;
    width: 20px;
    height: 20px;
}





/* --- Stiluri SĂGEATĂ FINĂ --- */
.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 20px; /* Redus de la 30px */
    height: 20px; /* Redus de la 30px */
    z-index: 5;
}

.scroll-down-arrow span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 2px solid var(--color-white); /* Mai subțire (2px) */
    border-bottom: 2px solid var(--color-white); /* Mai subțire (2px) */
    transform: rotate(-45deg);
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}
/* =========================================
   PAGINA EVENIMENTE
   ========================================= */

.events-hero {
    background-color: var(--color-background);
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.events-hero h1 {
    font-size: 3rem;
    color: var(--color-accent);
}

.events-section {
    padding: 80px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Se adaptează singură la ecran */
    gap: 40px;
}

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

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.event-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Data calendaristică stilizată */
.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-accent);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.event-date span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: normal;
}

.event-info {
    padding: 30px;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.event-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
/* --- Recenzii --- */
.reviews-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stars {
    color: #FFD700; /* Auriu pentru stele */
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.client-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--color-accent);
}

/* --- Locații --- */
.locations-section {
    padding: 80px 0;
    background-color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.location-card {
    background: var(--color-background);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.location-card h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.map-placeholder {
    margin-top: 20px;
    filter: grayscale(0.5); /* Un aspect mai elegant pentru hartă */
    transition: filter 0.3s ease;
}

.map-placeholder:hover {
    filter: grayscale(0);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}
/* --- Stiluri Footer (Ancora site-ului) --- */
.site-footer {
    background-color: #1a1a1a; /* Un gri foarte închis, aproape negru */
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px; /* Împinge footer-ul departe de conținutul de deasupra */
    clear: both; /* Forțează footer-ul să stea sub orice element care plutește */
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Pe mobil se vor pune una sub alta */
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3, .footer-col h4 {
    color: var(--color-accent); /* Verdele RAL 6005 pentru titluri */
    margin-bottom: 20px;
}

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

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #777;
}

/* Fix pentru a forța footer-ul jos chiar dacă pagina e scurtă */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}
/* =========================================
   STIL BUTOANE MENIU NAVIGARE (HEADER)
   ========================================= */

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 10px; /* Spațiu între butoane */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    background-color: var(--color-accent); /* Verde RAL 6005 */
    color: #ffffff !important; /* Text alb obligatoriu */
    padding: 10px 20px;
    border-radius: 50px; /* Margini rotunjite ca la Franciză */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Efect de hover pentru butoanele din meniu */
.main-navigation ul li a:hover {
    background-color: #1a4331; /* O nuanță de verde o idee mai închisă */
    transform: translateY(-2px); /* Mică ridicare la hover */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Dacă vrei ca butonul paginii pe care te afli să fie marcat (opțional) */
.main-navigation ul li.current-menu-item a {
    background-color: #1a4331;
    text-decoration: underline;
}

/* Ajustare pentru logo ca să fie aliniat cu butoanele */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
/* =========================================
   HERO SECTION - VIDEO & FULL WIDTH
   ========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh; /* O face mult mai înaltă (85% din ecran) */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Taie ce iese în afară */
    background-color: #000; /* Fundal negru până se încarcă video */
}

/* Video-ul care acoperă tot fundalul */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Important: nu deformează imaginea */
}

/* Strat negru transparent peste video (contrast pentru text) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ajustează 0.4 pentru mai mult/puțin întuneric */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Pune textul peste overlay și video */
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 5rem; /* Mult mai mare și de impact */
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slogan-hero {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Butoanele din Hero */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Adaptare pentru ecrane mici */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}
/* --- Stiluri Hărți și Locații --- */
.locations-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.location-card h3 {
    color: var(--color-accent); /* Verde RAL 6005 */
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.location-details {
    margin-bottom: 25px;
}

.location-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.location-details i {
    color: var(--color-accent);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.map-container {
    margin-top: auto; /* Împinge harta jos de tot în card */
    overflow: hidden;
}

.map-container iframe {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
//* --- STILUL PENTRU ACORDEON --- */
.menu-category {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.category-header {
    width: 100%;
    padding: 20px;
    background: #1d4331; /* Verde RAL 6005 */
    color: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    outline: none;
}

.category-content {
    /* Starea închisă */
    display: none; 
    padding: 20px;
}

/* Starea deschisă - Când categoria are clasa .active, afișăm conținutul */
.menu-category.active .category-content {
    display: block;
}

/* Rotirea săgeții */
.menu-category.active .arrow {
    transform: rotate(180deg);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .menu-items-grid { grid-template-columns: 1fr; }
}
/* =========================================
   RESPONSIVE (Adaptabilitate pentru Telefoane)
   ========================================= */

@media (max-width: 768px) {
    /* 1. Header & Meniu: Așezăm logo-ul deasupra și meniul sub el */
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    .main-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding-bottom: 10px;
    }

    /* 2. Hero (Prima pagină): Micșorăm textul și punem butoanele unul sub altul */
    .hero-content h1 {
        font-size: 2.5rem; /* Text mai mic pentru a încăpea pe ecran */
    }
    
    .hero-buttons {
        flex-direction: column; /* Butoane pe verticală */
        gap: 15px;
        padding: 0 20px;
    }

    /* 3. Despre Noi: Punem imaginea sub text */
    .about-teaser-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-teaser-section {
        padding: 60px 0;
    }

    /* 4. Teaser Meniu: Transformăm grila din 3 coloane într-o singură coloană */
    .menu-grid {
        grid-template-columns: 1fr; /* 1 singură coloană pe mobil */
    }

    /* 5. Franciză: Ajustăm spațiile și mărimea textului */
    .franchise-section {
        padding: 60px 20px;
    }

    .franchise-content h2 {
        font-size: 2.2rem;
    }
}
