/* ═══════════════════════════════════════════════════
   Shared CSS — Ευβοϊκό Ωδείο Σιάνου
   All page-specific styles go in @push('styles')
   ═══════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── VARIABLES ─── */
:root {
  --red:        #8B1A1A;
  --red-dark:   #5C0F0F;
  --red-light:  #B02020;
  --red-muted:  #C04040;
  --cream:      #FAF7F2;
  --cream-2:    #F2EDE4;
  --cream-3:    #E8E0D4;
  --ink:        #1C1410;
  --ink-2:      #3D2E25;
  --ink-3:      #6B5748;
  --gold:       #D4A017;
  --gold-light: #F0C040;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 92px; background: rgba(250,247,242,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(139,26,26,0.12); transition: box-shadow var(--transition); }
nav.scrolled { box-shadow: 0 2px 24px rgba(92,15,15,0.10); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 72px; width: 72px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .top { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--red); letter-spacing: 0.02em; }
.nav-logo-text .sub { font-size: 11px; font-weight: 400; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--ink-2); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; transition: color var(--transition); position: relative; }
.nav-links a:hover { color: var(--red); }
.nav-links a.has-drop { padding-right: 22px; }
.nav-links a.has-drop::after { content: '▾'; font-size: 10px; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); }
.nav-links .cta { background: var(--red); color: var(--white); padding: 8px 20px; font-weight: 500; border-radius: 2px; }
.nav-links .cta:hover { background: var(--red-dark); color: var(--white); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--cream-3); border-top: 2px solid var(--red); min-width: 200px; padding: 8px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.10); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity var(--transition), transform var(--transition); z-index: 200; }
.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 8px 20px; font-size: 12px; letter-spacing: 0.06em; color: var(--ink-2); text-transform: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--red); }
.dropdown-menu .section-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding: 12px 20px 4px; pointer-events: none; }
.dropdown-menu hr { border: none; border-top: 1px solid var(--cream-3); margin: 6px 0; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: var(--transition); }

/* ─── MOBILE NAV ─── */
.mobile-nav { position: fixed; top: 92px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 16px 0 40px; transform: translateX(-100%); transition: transform var(--transition); overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .m-item { border-bottom: 1px solid var(--cream-3); }
.mobile-nav .m-row { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.mobile-nav .m-row a { display: block; font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--ink); text-decoration: none; padding: 16px 0; flex: 1; }
.mobile-nav .m-row a:hover { color: var(--red); }
.mobile-nav .m-toggle { background: none; border: none; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--ink-3); font-size: 20px; transition: transform var(--transition), color var(--transition); }
.mobile-nav .m-toggle.open { transform: rotate(45deg); color: var(--red); }
.mobile-nav .m-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--cream); }
.mobile-nav .m-sub.open { max-height: 600px; }
.mobile-nav .m-sub-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding: 14px 32px 4px; }
.mobile-nav .m-sub a { display: block; font-size: 14px; color: var(--ink-2); text-decoration: none; padding: 10px 32px; }
.mobile-nav .m-sub a:hover { color: var(--red); }
.mobile-nav .m-sub hr { border: none; border-top: 1px solid var(--cream-3); margin: 4px 24px; }
.mobile-nav .mobile-cta { margin: 24px 24px 0; display: block; background: var(--red); color: var(--white); text-align: center; padding: 16px; border-radius: 2px; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-nav .mobile-cta:hover { background: var(--red-dark); }

/* ─── PAGE HERO (base) ─── */
/* ::after is page-specific (different decorative char per page) */
.page-hero { background: var(--red-dark); padding: 160px 48px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 0, transparent 50%); background-size: 32px 32px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(40px, 5.5vw, 72px); font-weight: 600; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .hero-desc { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 40px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── UTILITIES ─── */
.inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-muted); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red-muted); }
.section-title { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 44px); font-weight: 600; color: var(--ink); line-height: 1.1; margin-bottom: 40px; }
.section-title em { color: var(--red); font-style: italic; }
.btn-red { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 16px 36px; border-radius: 2px; transition: background var(--transition), transform var(--transition); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--cream); padding: 80px 48px; text-align: center; border-top: 1px solid var(--cream-3); }
.cta-strip h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.cta-strip h2 em { color: var(--red); font-style: italic; }
.cta-strip p { font-size: 15px; font-weight: 300; color: var(--ink-3); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* ─── CONTACT STRIP ─── */
.contact-strip { background: var(--white); padding: 72px 48px; }
.contact-strip .inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: start; }
.contact-block h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-muted); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-3); }
.contact-block p, .contact-block a:not(.btn-red) { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--ink-2); text-decoration: none; display: block; }
.contact-block a:not(.btn-red):hover { color: var(--red); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--ink-2); }
.hours-row .day { color: var(--ink-3); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-left img { height: 36px; width: 36px; border-radius: 50%; object-fit: cover; }
.footer-logo-text { font-family: var(--font-serif); font-size: 15px; color: rgba(255,255,255,0.8); }
.footer-center { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); text-align: center; }
.footer-right { display: flex; align-items: center; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13px; transition: border-color var(--transition), color var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── REVEAL ON SCROLL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE BASE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .page-hero { padding: 140px 24px 64px; }
  .contact-strip .inner { grid-template-columns: 1fr; }
  .contact-strip { padding: 48px 24px; }
  .cta-strip { padding: 64px 24px; }
  footer { padding: 32px 24px; }
}
