/* ===== LITO HOTEL — GLOBAL STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: #2c2c2c;
  background: #faf9f7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TOKENS ── */
:root {
  --gold:    #b5935a;
  --gold-lt: #d4b483;
  --dark:    #1a1a1a;
  --cream:   #faf9f7;
  --grey:    #6b6b6b;
  --border:  #e5e0d8;
  --nav-h:   72px;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,147,90,.2);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(26,26,26,.98); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: .5rem;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold-lt); letter-spacing: .04em;
}
.main-nav {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto; flex-wrap: wrap;
}
.nav-link {
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  color: #d0d0d0;
  padding: .4rem .65rem; border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-lt); }
.nav-link.btn-book { text-transform: none; }
.nav-link.btn-book {
  background: var(--gold); color: #fff;
  padding: .45rem .9rem; border-radius: 6px;
  margin-left: .5rem; font-weight: 600;
}
.nav-link.btn-book:hover { background: var(--gold-lt); }

/* Lang Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: .2rem;
  margin-left: 1rem; flex-shrink: 0;
}
.lang-btn {
  background: none; border: 1px solid rgba(255,255,255,.25);
  color: #aaa; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; padding: .25rem .5rem;
  border-radius: 4px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.lang-btn:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
.lang-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }


/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #ccc; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   HERO (Index)
══════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  padding-top: var(--nav-h);
}
.hero-tag {
  font-size: .85rem; font-weight: 400; letter-spacing: .12em;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300; color: #fff;
  line-height: 1.15; margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-block;
  background: var(--gold); color: #fff;
  padding: .8rem 2rem; border-radius: 6px;
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.7); color: #fff;
  padding: .8rem 2rem; border-radius: 6px;
  font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: .75rem 1.75rem; border-radius: 6px;
  font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--gold); color: #fff; }

/* Hero dots & arrows */
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; background: rgba(0,0,0,.35); color: #fff;
  border: none; cursor: pointer; font-size: 2.5rem; line-height: 1;
  padding: .1rem .75rem; border-radius: 4px;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(0,0,0,.6); }
.hero-arrow.left { left: 1.5rem; }
.hero-arrow.right { right: 1.5rem; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  position: relative; height: 55vh; min-height: 360px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 2.5rem 2rem;
  max-width: 900px; margin: 0 auto;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: #fff; line-height: 1.15;
}
.page-hero-content p {
  color: rgba(255,255,255,.8); font-size: 1rem;
  margin-top: .5rem; font-weight: 300;
}

/* ══════════════════════════════
   HIGHLIGHTS (Home) — Image Cards
══════════════════════════════ */
.highlights { padding: 0; background: #fff; }

.hl-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 480px;
}

.hl-img-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hl-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.hl-img-card:hover .hl-img-bg { transform: scale(1.08); }

.hl-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.12) 100%
  );
  transition: background .4s;
}
.hl-img-card:hover .hl-img-overlay {
  background: linear-gradient(
    to top,
    rgba(20,10,0,.88) 0%,
    rgba(0,0,0,.4) 55%,
    rgba(0,0,0,.15) 100%
  );
}

.hl-img-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .5rem;
}

.hl-img-icon { font-size: 2rem; line-height: 1; }

.hl-img-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400;
  color: #fff; line-height: 1.2;
}

.hl-img-body p {
  font-size: .85rem; color: rgba(255,255,255,.78);
  line-height: 1.55;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease;
}
.hl-img-card:hover .hl-img-body p {
  max-height: 80px; opacity: 1;
}

.hl-img-link {
  display: inline-block;
  font-size: .8rem; font-weight: 600;
  color: var(--gold-lt); letter-spacing: .04em;
  margin-top: .25rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
}
.hl-img-card:hover .hl-img-link {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════
   ESPA
══════════════════════════════ */
.espa-section { padding: 3rem 0; background: var(--cream); text-align: center; }
.espa-img { max-width: 640px; margin: 0 auto; border-radius: 8px; }

/* ══════════════════════════════
   PAGE CONTENT
══════════════════════════════ */
.page-content { padding: 4rem 0 5rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-subtitle { color: var(--grey); margin-bottom: 2.5rem; }
.text-center { text-align: center; }

/* ── Diamoni ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.content-text { }
.content-text p { color: var(--grey); margin-bottom: 1.25rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1rem; margin: 1.75rem 0;
}
.amenity {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--dark);
}
.amenity-icon { font-size: 1rem; }

.room-specs {
  display: flex; gap: 2rem;
  background: var(--cream); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.spec { display: flex; flex-direction: column; gap: .2rem; }
.spec-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); }
.spec-value { font-weight: 600; color: var(--dark); }

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

.content-images { display: flex; flex-direction: column; gap: 1rem; }
.content-img { border-radius: var(--radius); object-fit: cover; width: 100%; }
.main-img { height: 300px; }
.secondary-img { height: 200px; }

/* ── Egkatastaseis ── */
.facilities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem;
}
.facility-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
}
.facility-img { width: 100%; height: 260px; object-fit: cover; }
.facility-body { padding: 1.75rem; }
.facility-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; margin-bottom: .75rem;
}
.facility-body p { color: var(--grey); font-size: .9rem; }

.sports-section { background: var(--cream); border-radius: var(--radius); padding: 3rem 2rem; }
.sports-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.sport-item { text-align: center; }
.sport-icon { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.sport-item h3 { font-weight: 600; margin-bottom: .3rem; }
.sport-item p { font-size: .85rem; color: var(--grey); }

/* ── Ekdiloseis ── */
.events-intro { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.events-lead { color: var(--grey); font-size: 1.05rem; }
.events-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.event-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: transform .25s, box-shadow .25s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.event-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: .6rem; }
.event-card p { color: var(--grey); font-size: .9rem; }
.events-cta { text-align: center; margin-top: 3.5rem; }
.events-cta p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; }

/* Events image grid */
.evt-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.evt-img-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  height: 360px; cursor: pointer;
}
.evt-img-card .hl-img-bg { transition: transform .6s ease; }
.evt-img-card:hover .hl-img-bg { transform: scale(1.08); }
.evt-img-card .hl-img-body p {
  max-height: 80px; opacity: 1;
}

/* ── Perioxi ── */
.area-intro { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.area-lead { font-size: 1.05rem; color: var(--grey); }
.area-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.area-card {
  padding: 1.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: transform .25s, box-shadow .25s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.area-icon { font-size: 2rem; margin-bottom: .75rem; }
.area-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: .5rem; }
.area-card p { font-size: .88rem; color: var(--grey); }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 8px; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  color: #fff; font-size: .85rem; font-weight: 500;
  text-align: center; padding: .5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 90vh; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 3rem; cursor: pointer; padding: .5rem 1rem;
  border-radius: 4px; transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ── Epikoinonia ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.contact-item p { color: var(--grey); font-size: .9rem; }
.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }
.contact-cta-box {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.75rem; margin-top: 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.contact-cta-box p { color: var(--grey); font-size: .9rem; }
.map-embed { margin-bottom: 1.5rem; }
.directions-info p { font-size: .88rem; color: var(--grey); margin-bottom: .4rem; }

/* ── Kratiseis ── */
.booking-page { max-width: 900px; margin: 0 auto; }
.booking-intro { margin-bottom: 3rem; }
.booking-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-bottom: 3rem;
}
.booking-option {
  padding: 2.5rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  background: #fff;
}
.booking-option.featured { border-color: var(--gold); background: #fffdf8; }
.booking-opt-icon { font-size: 2.5rem; }
.booking-option h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.booking-option p { font-size: .9rem; color: var(--grey); }

.booking-info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: var(--cream); border-radius: var(--radius); padding: 2rem;
}
.info-strip-item { display: flex; align-items: center; gap: .75rem; }
.strip-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-strip-item strong { display: block; font-size: .85rem; }
.info-strip-item p { font-size: .8rem; color: var(--grey); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--dark); color: #c5c5c5;
  padding-top: 3.5rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px 2.5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold-lt);
  display: block; margin-bottom: .5rem;
}
.footer-logo p { font-size: .85rem; }
.footer-contact p { font-size: .88rem; margin-bottom: .4rem; color: #c5c5c5; }
.footer-contact a { color: var(--gold-lt); }
.footer-nav {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-nav a { font-size: .88rem; color: #c5c5c5; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; padding: 1.25rem;
}
.footer-bottom p { font-size: .82rem; color: #888; }
.footer-bottom a { color: var(--gold-lt); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(26,26,26,.98); padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08); gap: .25rem;
  }
  .main-nav.open { display: flex; }
  .nav-link { font-size: .9rem; width: 100%; padding: .65rem .5rem; }
  .content-grid, .contact-grid, .events-grid,
  .facilities-grid, .booking-options { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-info-strip { grid-template-columns: 1fr 1fr; }
  .hl-img-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .hl-img-card { height: 300px; }
  .hl-img-body p { max-height: 80px; opacity: 1; }
  .hl-img-link { opacity: 1; transform: translateY(0); }
}
@media (max-width: 580px) {
  .area-grid, .gallery-grid { grid-template-columns: 1fr; }
  .sports-grid, .booking-info-strip { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hl-img-grid { grid-template-columns: 1fr; }
  .hl-img-card { height: 260px; }
}
