/* ═══════════════════════════════════════════
   MUM'S ROLLS — Complete Stylesheet
   Brand: Peach #F4A67A · Teal #2DB4A0 · Dark #1A0F0A
═══════════════════════════════════════════ */
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; background: #FDE8D8; color: #1A0F0A; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }
/* ── Tokens ── */
:root {
--peach:      #F4A67A;
--peach-light:#FDE8D8;
--peach-mid:  #F9C4A0;
--teal:       #2DB4A0;
--teal-dark:  #1E8070;
--dark:       #1A0F0A;
--dark-mid:   #3D2314;
--cream:      #FFFAF6;
--mid-grey:   #7A5C4E;
--light-grey: #EDD9CC;
--font-serif: 'Playfair Display', Georgia, serif;
--font-sans:  'Inter', system-ui, sans-serif;
--radius:     16px;
--shadow:     0 8px 40px rgba(26,15,10,0.12);
--shadow-lg:  0 20px 60px rgba(26,15,10,0.18);
--trans:      0.28s ease;
--max:        1200px;
}
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
/* ── Buttons ── */
.btn {
display: inline-block;
padding: 16px 36px;
border-radius: 50px;
font-family: var(--font-sans);
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.01em;
transition: all var(--trans);
border: 2px solid transparent;
white-space: nowrap;
text-align: center;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,180,160,0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-full { width: 100%; }
/* ── Labels ── */
.section-label {
display: block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 12px;
}
.section-label--light { color: var(--peach-mid); }
.section-title--light { color: #fff; }
/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 500;
background: rgba(26,15,10,0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(244,166,122,0.15);
transition: box-shadow var(--trans);
}
.header-inner {
display: flex;
align-items: center;
height: 68px;
gap: 24px;
}
.logo { flex-shrink: 0; }
.logo-img { width: 52px; height: 52px; object-fit: contain; }
.nav-links {
display: flex;
align-items: center;
gap: 28px;
margin-left: auto;
}
.nav-links a {
font-size: 0.88rem;
color: rgba(255,255,255,0.7);
font-weight: 500;
transition: color var(--trans);
}
.nav-links a:hover { color: var(--peach); }
.btn-nav {
background: var(--teal);
color: #fff !important;
padding: 10px 24px;
border-radius: 50px;
font-size: 0.88rem;
font-weight: 600;
}
.btn-nav:hover { background: var(--teal-dark) !important; }
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
padding: 4px;
margin-left: auto;
}
.hamburger span {
display: block;
width: 24px;
height: 2px;
background: #fff;
border-radius: 2px;
transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Sticky CTA */
.sticky-cta {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 190;
opacity: 0;
transform: translateY(20px);
transition: all var(--trans);
pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta a {
display: block;
background: var(--teal);
color: #fff;
padding: 14px 28px;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
box-shadow: 0 8px 32px rgba(45,180,160,0.4);
transition: all var(--trans);
}
.sticky-cta a:hover { background: var(--teal-dark); transform: translateY(-2px); }
/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
padding-top: 68px;
width: 100%;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
width: 100%;
overflow: hidden;
}
.hero-photo {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(26,15,10,0.88) 0%,
rgba(61,35,20,0.75) 50%,
rgba(26,15,10,0.70) 100%
  );
}
.hero-content {
position: relative;
z-index: 2;
max-width: 720px;
padding: 60px 24px 80px;
}
.hero-logo-wrap { margin-bottom: 32px; }
.spiral-logo {
width: 120px;
height: 120px;
object-fit: contain;
animation: spiralSpin 20s linear infinite;
filter: drop-shadow(0 0 20px rgba(244,166,122,0.4));
}
@keyframes spiralSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-eyebrow {
font-size: 0.75rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--peach);
margin-bottom: 20px;
font-weight: 500;
}
.hero h1 {
font-family: var(--font-serif);
font-size: clamp(2.2rem, 5vw, 3.8rem);
color: #fff;
line-height: 1.15;
margin-bottom: 20px;
}
.hero h1 em { color: var(--peach); font-style: italic; }
.hero-sub {
font-size: 1.1rem;
color: rgba(255,255,255,0.75);
line-height: 1.7;
margin-bottom: 28px;
max-width: 560px;
}
.hero-usps {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 36px;
}
.hero-usps span {
background: rgba(244,166,122,0.15);
border: 1px solid rgba(244,166,122,0.3);
color: var(--peach-mid);
padding: 8px 16px;
border-radius: 50px;
font-size: 0.82rem;
font-weight: 500;
backdrop-filter: blur(4px);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-scarcity {
font-size: 0.82rem;
color: rgba(255,255,255,0.5);
letter-spacing: 0.05em;
}
.hero-wave {
position: absolute;
bottom: -1px;
left: 0;
right: 0;
z-index: 1;
line-height: 0;
width: 100%;
overflow: hidden;
}
.hero-wave svg { width: 100%; display: block; }
/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
background: var(--peach-light);
padding: 28px 0;
position: relative;
z-index: 1;
}
.trust-inner {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
}
.trust-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.trust-num {
font-family: var(--font-serif);
font-size: 2rem;
font-weight: 700;
color: var(--dark);
line-height: 1;
}
.trust-label {
font-size: 0.75rem;
color: var(--mid-grey);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 500;
}
.trust-sep { color: var(--peach); font-size: 1.5rem; opacity: 0.4; }
/* ═══════════════════════════════════════════
   DESPRE NOI
═══════════════════════════════════════════ */
.section-despre {
padding: 100px 0;
background: var(--cream);
}
.despre-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.despre-images {
position: relative;
}
.despre-img-main {
width: 100%;
height: 560px;
object-fit: cover;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
}
.despre-img-accent {
position: absolute;
bottom: -40px;
right: -40px;
width: 220px;
height: 260px;
object-fit: cover;
border-radius: var(--radius);
border: 6px solid var(--cream);
box-shadow: var(--shadow);
}
.despre-text h2 {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3vw, 2.6rem);
line-height: 1.25;
margin-bottom: 20px;
color: var(--dark);
}
.despre-intro {
font-size: 1.15rem;
font-weight: 500;
color: var(--dark-mid);
margin-bottom: 16px;
}
.despre-text p {
color: var(--mid-grey);
margin-bottom: 16px;
font-size: 1.02rem;
line-height: 1.75;
}
.despre-values {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 28px 0 32px;
}
.value-pill {
background: var(--peach-light);
border: 1.5px solid var(--peach-mid);
color: var(--dark-mid);
padding: 8px 18px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 500;
}
/* ═══════════════════════════════════════════
   MENIU
═══════════════════════════════════════════ */
.section-meniu {
padding: 100px 0;
background: var(--peach-light);
}
.section-meniu h2 {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3vw, 2.6rem);
margin-bottom: 12px;
}
.section-intro {
color: var(--mid-grey);
font-size: 1.05rem;
margin-bottom: 48px;
max-width: 500px;
}
/* Menu tabs */
.menu-tabs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-bottom: 40px;
}
.menu-tab {
background: #fff;
border: 2px solid var(--light-grey);
border-radius: var(--radius);
padding: 20px 16px;
text-align: center;
transition: all var(--trans);
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
.menu-tab:hover { border-color: var(--peach); transform: translateY(-3px); }
.menu-tab.active {
background: var(--dark);
border-color: var(--dark);
color: #fff;
box-shadow: var(--shadow);
transform: translateY(-4px);
}
.tab-icon { font-size: 1.8rem; }
.tab-title {
font-family: var(--font-serif);
font-size: 0.95rem;
font-weight: 700;
line-height: 1.3;
}
.tab-desc {
font-size: 0.75rem;
opacity: 0.65;
letter-spacing: 0.04em;
}
/* Menu panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.panel-intro {
background: #fff;
border-radius: var(--radius);
padding: 24px 28px;
margin-bottom: 28px;
border-left: 4px solid var(--peach);
}
.panel-intro p { font-size: 1.05rem; color: var(--mid-grey); line-height: 1.7; }
.flavours-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.flavours-grid--2 { grid-template-columns: repeat(2, 1fr); }
.flavour-card {
background: #fff;
border-radius: var(--radius);
padding: 28px 24px;
box-shadow: 0 2px 16px rgba(26,15,10,0.07);
transition: all var(--trans);
position: relative;
overflow: hidden;
}
.flavour-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 60%, rgba(244,166,122,0.08));
opacity: 0;
transition: opacity var(--trans);
}
.flavour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.flavour-card:hover::before { opacity: 1; }
.flavour-card--large { padding: 40px 32px; }
.flavour-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.flavour-card h3 {
font-family: var(--font-serif);
font-size: 1.15rem;
margin-bottom: 8px;
color: var(--dark);
}
.flavour-card p {
font-size: 0.88rem;
color: var(--mid-grey);
line-height: 1.6;
margin-bottom: 8px;
}
.flavour-story { font-style: italic; color: var(--peach) !important; }
.flavour-tag {
display: inline-block;
background: var(--peach-light);
color: var(--dark-mid);
font-size: 0.72rem;
font-weight: 600;
padding: 4px 12px;
border-radius: 50px;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-top: 8px;
}
.menu-note {
margin-top: 24px;
padding: 16px 20px;
background: rgba(244,166,122,0.15);
border-radius: 8px;
font-size: 0.85rem;
color: var(--mid-grey);
}
.menu-cta {
text-align: center;
margin-top: 52px;
padding: 48px;
background: var(--dark);
border-radius: var(--radius);
color: #fff;
}
.menu-cta p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.85; }
/* ═══════════════════════════════════════════
   PROCES SLIDESHOW
═══════════════════════════════════════════ */
.section-proces {
background: var(--dark);
padding: 100px 0 0;
position: relative;
overflow: hidden;
}
.section-proces .container { margin-bottom: 52px; }
.section-intro--light { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.slideshow-wrap {
position: relative;
}
.slideshow {
display: grid;
grid-template-columns: 1fr;
}
.slide {
display: none;
grid-column: 1;
grid-row: 1;
position: relative;
min-height: 520px;
}
.slide.active { display: grid; grid-template-columns: 1fr 1fr; }
.slide img {
width: 100%;
height: 520px;
object-fit: cover;
}
.slide-caption {
background: rgba(26,15,10,0.95);
padding: 60px 52px;
display: flex;
flex-direction: column;
justify-content: center;
}
.step-num {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--peach);
margin-bottom: 16px;
display: block;
}
.slide-caption h3 {
font-family: var(--font-serif);
font-size: clamp(1.4rem, 2.5vw, 2rem);
color: #fff;
margin-bottom: 20px;
line-height: 1.25;
}
.slide-caption p {
color: rgba(255,255,255,0.65);
font-size: 1rem;
line-height: 1.75;
}
/* Slide controls */
.slide-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(244,166,122,0.2);
border: 1.5px solid rgba(244,166,122,0.3);
color: var(--peach);
width: 52px;
height: 52px;
border-radius: 50%;
font-size: 1.2rem;
display: flex;
align-items: center;
justify-content: center;
transition: all var(--trans);
z-index: 10;
}
.slide-btn:hover { background: var(--peach); color: var(--dark); }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
/* Dots */
.slide-dots {
display: flex;
justify-content: center;
gap: 10px;
padding: 28px 0 0;
}
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.25);
border: none;
transition: all var(--trans);
padding: 0;
}
.dot.active { background: var(--peach); transform: scale(1.3); }
/* Progress bar */
.slide-progress {
height: 3px;
background: rgba(255,255,255,0.1);
}
.slide-progress-bar {
height: 100%;
background: var(--peach);
width: 0%;
transition: width linear;
}
/* ═══════════════════════════════════════════
   RECENZII
═══════════════════════════════════════════ */
.section-recenzii {
padding: 100px 0;
background: var(--cream);
}
.section-recenzii h2 {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3vw, 2.6rem);
margin-bottom: 52px;
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
align-items: start;
}
.review-card {
background: #fff;
border-radius: var(--radius);
padding: 36px 32px;
box-shadow: 0 2px 16px rgba(26,15,10,0.07);
border: 1.5px solid var(--light-grey);
}
.review-card--featured {
background: var(--dark);
color: #fff;
border-color: var(--dark);
transform: translateY(-12px);
box-shadow: var(--shadow-lg);
}
.review-card--featured p { color: rgba(255,255,255,0.8); }
.review-card--featured footer { color: rgba(255,255,255,0.5); }
.review-stars { color: var(--peach); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p {
font-style: italic;
color: var(--mid-grey);
line-height: 1.75;
margin-bottom: 20px;
font-size: 0.97rem;
}
.review-card footer { font-size: 0.85rem; color: var(--mid-grey); font-weight: 500; }
/* ═══════════════════════════════════════════
   EVENIMENTE
═══════════════════════════════════════════ */
.section-evenimente {
padding: 100px 0;
background: var(--peach-light);
}
.section-evenimente h2 {
font-family: var(--font-serif);
font-size: clamp(1.8rem, 3vw, 2.6rem);
margin-bottom: 48px;
}
.events-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 52px;
}
.event-card {
background: #fff;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: transform var(--trans);
}
.event-card:hover { transform: translateY(-8px); }
.event-img-wrap { position: relative; height: 220px; overflow: hidden; }
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }
.event-overlay {
position: absolute;
inset: 0;
background: rgba(26,15,10,0.35);
display: flex;
align-items: center;
justify-content: center;
}
.event-icon { font-size: 2.5rem; }
.event-body { padding: 28px 28px 32px; }
.event-body h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 12px; }
.event-body p { color: var(--mid-grey); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.event-includes { display: flex; flex-direction: column; gap: 6px; }
.event-includes li { font-size: 0.85rem; color: var(--teal-dark); font-weight: 500; }
.events-cta-box {
text-align: center;
padding: 52px;
background: var(--dark);
border-radius: var(--radius);
color: #fff;
}
.events-cta-box p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.8; }
/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.section-contact {
background: var(--dark-mid);
padding: 100px 0;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 80px;
align-items: start;
}
.contact-info h2 {
font-family: var(--font-serif);
font-size: clamp(1.6rem, 2.5vw, 2.4rem);
color: #fff;
margin-bottom: 20px;
line-height: 1.25;
}
.contact-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.contact-details li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.75); font-size: 0.97rem; }
.contact-icon { font-size: 1.2rem; }
.contact-details a { color: var(--peach); transition: color var(--trans); }
.contact-details a:hover { color: var(--peach-mid); }
.contact-brand img { opacity: 0.5; }
/* Form */
.contact-form-wrap {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius);
padding: 44px;
backdrop-filter: blur(8px);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; text-transform: uppercase; }
input, select, textarea {
font-family: var(--font-sans);
font-size: 0.97rem;
padding: 14px 18px;
background: rgba(255,255,255,0.08);
border: 1.5px solid rgba(255,255,255,0.15);
border-radius: 10px;
color: #fff;
outline: none;
transition: border-color var(--trans);
width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
input:focus, select:focus, textarea:focus { border-color: var(--peach); }
select option { background: var(--dark-mid); color: #fff; }
textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 8px; }
.form-success {
text-align: center;
padding: 60px 40px;
color: #fff;
}
.success-icon { font-size: 4rem; margin-bottom: 24px; }
.form-success h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 16px; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 8px; }
/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 60px;
padding-bottom: 52px;
border-bottom: 1px solid rgba(255,255,255,0.08);
align-items: start;
}
.footer-brand img { margin-bottom: 16px; opacity: 0.8; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.site-footer nav ul { display: flex; flex-direction: column; gap: 14px; }
.site-footer nav a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color var(--trans); }
.site-footer nav a:hover { color: var(--peach); }
.footer-social a { color: rgba(255,255,255,0.45); transition: color var(--trans); display: inline-block; }
.footer-social a:hover { color: var(--peach); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--peach); }
/* ═══════════════════════════════════════════
   AI CHAT WIDGET
═══════════════════════════════════════════ */
.chat-widget {
position: fixed;
bottom: 100px;
right: 24px;
z-index: 400;
}
.chat-toggle {
display: flex;
align-items: center;
gap: 10px;
background: var(--dark);
border: 2px solid var(--peach);
color: var(--peach);
padding: 12px 20px;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
box-shadow: var(--shadow-lg);
transition: all var(--trans);
}
.chat-toggle:hover { background: var(--peach); color: var(--dark); }
.chat-icon { font-size: 1.2rem; }
.chat-box {
position: absolute;
bottom: 64px;
right: 0;
width: 340px;
background: var(--dark);
border: 1px solid rgba(244,166,122,0.2);
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
overflow: hidden;
}
.chat-header {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 18px;
background: rgba(244,166,122,0.08);
border-bottom: 1px solid rgba(244,166,122,0.12);
}
.chat-header img { border-radius: 50%; opacity: 0.8; }
.chat-header strong { display: block; color: #fff; font-size: 0.9rem; }
.chat-header span { font-size: 0.72rem; color: var(--teal); }
.chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1rem; padding: 4px; }
.chat-close:hover { color: #fff; }
.chat-log {
height: 260px;
overflow-y: auto;
padding: 16px;
display: flex;
flex-direction: column;
gap: 10px;
}
.chat-msg {
max-width: 85%;
padding: 10px 14px;
border-radius: 12px;
font-size: 0.88rem;
line-height: 1.55;
}
.chat-bot {
background: rgba(255,255,255,0.08);
color: rgba(255,255,255,0.85);
align-self: flex-start;
border-bottom-left-radius: 4px;
}
.chat-user {
background: var(--teal);
color: #fff;
align-self: flex-end;
border-bottom-right-radius: 4px;
}
.chat-input-wrap {
display: flex;
gap: 8px;
padding: 12px 16px;
border-top: 1px solid rgba(255,255,255,0.08);
}
.chat-input-wrap input {
flex: 1;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 8px;
padding: 10px 14px;
color: #fff;
font-size: 0.88rem;
}
.chat-input-wrap button {
background: var(--teal);
color: #fff;
border: none;
padding: 10px 16px;
border-radius: 8px;
font-size: 1rem;
transition: background var(--trans);
}
.chat-input-wrap button:hover { background: var(--teal-dark); }
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
.despre-grid { grid-template-columns: 1fr; gap: 60px; }
.despre-img-accent { display: none; }
.contact-grid { grid-template-columns: 1fr; gap: 48px; }
.footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
/* Nav - solid overlay, nothing shows through */
.nav-links {
display: none;
position: fixed;
top: 68px;
left: 0;
right: 0;
bottom: 0;
width: 100%;
background: #1A0F0A;
flex-direction: column;
padding: 40px 24px;
gap: 28px;
z-index: 499;
align-items: flex-start;
overflow-y: auto;
  }
.nav-links.open { display: flex; }
.hero-wave svg { height: 40px; }
body.nav-open { overflow: hidden; }
.nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.85); }
.hamburger { display: flex; }
/* Hero - top-aligned on mobile */
.hero { width: 100%; align-items: flex-start; }
.hero-content {
padding: 40px 24px 64px;
text-align: center;
width: 100%;
max-width: 100%;
  }
/* Scarcity text: stays in normal flow after the CTAs (just centered).
   .hero-content sits above the wave, so no overlap with the wave. */
.hero-scarcity {
display: block;
text-align: center;
margin-top: 4px;
padding: 0 20px;
}
.hero-logo-wrap { display: flex; justify-content: center; }
.hero-usps { justify-content: center; }
.hero-ctas {
flex-direction: column;
align-items: center;
width: 100%;
gap: 12px;
  }
.hero-ctas .btn {
width: 100%;
max-width: 320px;
white-space: normal;
text-align: center;
  }
/* Container */
.container { padding: 0 20px; }
/* Sections */
.section-despre { padding: 60px 0; }
.section-meniu { padding: 60px 0; }
.section-recenzii { padding: 60px 0; }
.section-evenimente { padding: 60px 0; }
.section-contact { padding: 60px 0; }
/* Buttons - never overflow */
.btn { white-space: normal; word-break: break-word; }
.menu-cta { padding: 32px 20px; }
.menu-cta .btn { width: 100%; }
.events-cta-box { padding: 32px 20px; }
.events-cta-box .btn { width: 100%; }
/* Stats */
.trust-inner { justify-content: center; text-align: center; gap: 20px; }
/* Menu tabs */
.menu-tabs { grid-template-columns: 1fr; gap: 10px; }
.flavours-grid { grid-template-columns: repeat(2, 1fr); }
/* Reviews */
.reviews-grid { grid-template-columns: 1fr; }
.review-card--featured { transform: none; }
/* Events */
.events-grid { grid-template-columns: 1fr; }
/* Slideshow */
.slide.active { grid-template-columns: 1fr; }
.slide img { height: 260px; width: 100%; }
.slide-caption { padding: 28px 20px; }
.slide-btn { display: none; }
/* Footer */
.footer-inner { grid-template-columns: 1fr; gap: 32px; }
/* Form */
.form-row-half { grid-template-columns: 1fr; }
.contact-form-wrap { padding: 24px 16px; }
/* Chat */
.chat-widget { right: 12px; bottom: 80px; }
.chat-box {
position: fixed;
bottom: 140px;
right: 12px;
left: 12px;
width: auto;
  }
}
@media (max-width: 480px) {
.flavours-grid { grid-template-columns: 1fr; }
.flavours-grid--2 { grid-template-columns: 1fr; }
.trust-inner { flex-direction: column; gap: 16px; }
.trust-sep { display: none; }
.sticky-cta { bottom: 16px; left: 12px; right: auto; }
.sticky-cta a { padding: 12px 18px; font-size: 0.85rem; }
.hero-content { padding: 32px 16px 56px; }
.container { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════
   DEVICE-SPECIFIC RULES
   Classes applied by /js/device.js before first paint.
   Each block documents WHY the rule exists.
═══════════════════════════════════════════════════════ */

/* ── Safe-area insets ───────────────────────────────────
   Covers: iPhone X → 16 (notch / Dynamic Island),
   Samsung Galaxy S21+ (punch-hole + curved glass),
   Z Flip / Z Fold (rounded corners, chin).
   env(safe-area-inset-*) is zero on devices without insets,
   so this rule is safe to apply universally.               */
@supports (bottom: env(safe-area-inset-bottom)) {
  .chat-widget {
    bottom: calc(80px + env(safe-area-inset-bottom));
    right:  calc(12px + env(safe-area-inset-right));
  }
  .sticky-cta {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  @media (max-width: 480px) {
    .sticky-cta {
      left: calc(12px + env(safe-area-inset-left));
    }
  }
}

/* ── iOS Safari: 100vh fix ──────────────────────────────
   Safari on iOS counts the address bar in 100vh, making
   the hero taller than the visible screen. --vh is set by
   device.js to window.innerHeight × 0.01 (real visible px). */
.br-ios .hero {
  min-height: calc(var(--vh, 1vh) * 100);
}
/* Nav overlay must also not bleed under the address bar   */
.br-ios .nav-links {
  max-height: calc(var(--vh, 1vh) * 100 - 68px);
}

/* ── iOS Safari: hide chat label, compact toggle ────────
   iPhone viewports (375–430px) — two wide fixed buttons
   overlap content. Chat becomes icon-only.                */
.br-ios.br-mobile .chat-label { display: none; }
.br-ios.br-mobile .chat-toggle { padding: 10px 12px; gap: 0; }

/* ── Samsung Internet browser ───────────────────────────
   Samsung Internet has historically rendered SVG without
   explicit height differently from Chrome. Pin wave height
   explicitly for this browser.                            */
.br-samsung .hero-wave svg {
  height: 40px !important;
}
/* Samsung Internet on mobile: compact chat toggle         */
.br-samsung.br-mobile .chat-label { display: none; }
.br-samsung.br-mobile .chat-toggle { padding: 10px 12px; gap: 0; }

/* ── Samsung Z Flip ─────────────────────────────────────
   Z Flip open (inner screen): ~360×780 to ~412×915 CSS px.
   Very tall/narrow ratio. Two wide fixed buttons stack and
   cover content. br-zflip class set by device.js via UA.  */
.br-zflip .chat-label { display: none; }
.br-zflip .chat-toggle { padding: 10px 12px; gap: 0; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
.br-zflip .hero-wave svg { height: 30px !important; }
.br-zflip .hero-content { padding-bottom: 80px; }

/* Z Flip folded (cover screen ~390×30 CSS px — basically unusable
   for a full site, so we just ensure nothing crashes)             */
.br-folded .hero { min-height: 100svh; }
.br-folded .chat-widget { display: none; }
.br-folded .sticky-cta  { display: none; }

/* ── Samsung Z Fold ─────────────────────────────────────
   Z Fold unfolded inner screen: ~717–720px CSS width.
   Sits between mobile and desktop breakpoints — needs its
   own grid layout (2-col rather than 1 or 3).             */
@media (min-width: 600px) and (max-width: 750px) {
  /* Two-column grids look better than either 1 or 3 here */
  .flavours-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: repeat(2, 1fr); }
  .events-grid     { grid-template-columns: repeat(2, 1fr); }
  .menu-tabs       { grid-template-columns: repeat(3, 1fr); }
  .hero-wave svg   { height: 50px; }
  /* Featured review — no negative transform, not enough width */
  .review-card--featured { transform: none; }
}

/* ── All Android mobile Chrome/Firefox ─────────────────
   Chrome & Firefox on Android render SVG height from the
   viewBox intrinsic ratio UNLESS a height is set.
   Our global rule (height: 80px) covers this, but we add
   a belt-and-braces rule for sub-480px phones just in case.*/
@media (max-width: 480px) {
  .hero-wave svg { height: 30px; }
  /* Also hide chat label — at 360–480px any wide fixed
     button will cover content while scrolling.           */
  .chat-label { display: none; }
  .chat-toggle { padding: 10px 12px; gap: 0; }
}

/* ── Small phones: iPhone SE (375px), Galaxy A-series ──
   The smallest common viewport. Reduce font sizes and
   button padding to prevent overflow.                    */
@media (max-width: 375px) {
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas .btn { font-size: 0.88rem; padding: 13px 18px; }
  .hero-wave svg { height: 24px; }
}

/* ── Landscape mobile ───────────────────────────────────
   When a phone is rotated: viewport height drops to 350–500px.
   The full-screen hero would show almost no content above
   the fold. We shrink it to a content-height box instead. */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
  .hero { min-height: unset; padding: 80px 0 60px; align-items: flex-start; }
  .hero-wave svg { height: 24px; }
  .spiral-logo { width: 60px; height: 60px; }
  .hero-logo-wrap { margin-bottom: 12px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 14px; }
  .hero-usps { margin-bottom: 18px; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; }
}