/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   Mikros Gialos Apartments — classic hotel style
   ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

:root {
  --navy:       #14304a;
  --navy-deep:  #0e2336;
  --gold:       #b8945f;
  --gold-light: #c9a96a;
  --cream:      #f7f3ec;
  --cream-2:    #efe8dc;
  --ink:        #243341;
  --muted:      #6c7a86;
  --line:       #e0d8c9;
  --white:      #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--navy); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: .3px; }
h3 { font-size: 1.5rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Shared bits ─────────────────────────────────── */
.eyebrow {
  font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--gold); vertical-align: middle; margin-left: 12px; opacity: .6; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::after { display: none; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }
.center-text { text-align: center; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; font-family: var(--sans); font-size: .82rem;
  letter-spacing: 1.8px; text-transform: uppercase; font-weight: 400;
  border: 1px solid transparent; cursor: pointer; transition: all .35s var(--ease);
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600; letter-spacing: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--serif); font-size: 1.25rem; color: #fff; letter-spacing: .5px; }
.brand-sub  { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }

.nav { display: flex; gap: 34px; }
.nav a {
  color: rgba(255,255,255,.88); font-size: .82rem; letter-spacing: 1.5px;
  text-transform: uppercase; position: relative; padding: 4px 0;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  background: none; border: 1px solid rgba(255,255,255,.4); color: #fff;
  padding: 7px 12px; font-family: var(--sans); font-size: .74rem; letter-spacing: 1px;
  cursor: pointer; transition: all .3s var(--ease);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-light); }
.lang-divider { opacity: .4; margin: 0 3px; }
.lang-toggle .lang-en, .lang-toggle .lang-el { transition: opacity .3s; }
body[data-lang="en"] .lang-el { opacity: .45; }
body[data-lang="el"] .lang-en { opacity: .45; }

/* Scrolled header */
.site-header.scrolled { background: var(--navy-deep); box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.site-header.scrolled .header-inner { height: 66px; }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-btn span { width: 24px; height: 2px; background: #fff; transition: .3s var(--ease); }

/* ── Photo placeholder ───────────────────────────── */
.photo-placeholder {
  position: relative; background:
    repeating-linear-gradient(45deg, rgba(184,148,95,.05) 0 18px, transparent 18px 36px),
    linear-gradient(135deg, #2b4a63 0%, #14304a 60%, #0e2336 100%);
  display: grid; place-items: center; overflow: hidden;
}
.photo-placeholder::before {
  content: ""; width: 46px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 4px;
  box-shadow: inset 0 0 0 6px rgba(20,48,74,.6);
  background:
    radial-gradient(circle at 50% 58%, rgba(255,255,255,.4) 0 7px, transparent 8px);
}
.photo-placeholder::after {
  content: attr(data-label); position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55);
  font-family: var(--sans);
}

/* ── Hero ────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 110px 0 64px; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; background: #14304a; }

/* hero highlight tags */
.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-tags li { color: rgba(255,255,255,.9); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; }
.hero-tags li::before { content: ""; width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; margin-right: 12px; }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(to right, rgba(11,28,44,.78) 0%, rgba(11,28,44,.5) 36%, rgba(11,28,44,.12) 68%, rgba(11,28,44,.22) 100%),
  linear-gradient(to bottom, rgba(14,35,54,.4), rgba(14,35,54,.2) 45%, rgba(14,35,54,.6)); }
.hero-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; width: 100%; color: #fff; }
.hero-eyebrow { font-size: .85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; }
.hero-title { font-size: clamp(2.4rem, 5.2vw, 4.4rem); color: #fff; font-weight: 500; max-width: 14ch; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 300; margin: 22px 0 38px; max-width: 44ch; color: rgba(255,255,255,.92); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { display: none; position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.6); border-radius: 14px; z-index: 2; }
.hero-scroll::after { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: #fff; border-radius: 2px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80%,100% { opacity: 0; top: 22px; } }

/* ── About ───────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--ink); margin-bottom: 18px; max-width: 52ch; }
.about-facts { display: flex; gap: 40px; margin-top: 36px; }
.fact { display: flex; flex-direction: column; }
.fact-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.fact-label { font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.about-media { border-radius: 2px; min-height: 460px; width: 100%; object-fit: cover; }
.about-media.tall { aspect-ratio: 4/5; }

/* ── Rooms (single room type + gallery) ──────────── */
.rooms { background: var(--cream-2); }
.room-showcase { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; }

.room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.g-item { aspect-ratio: 3/2; cursor: pointer; border-radius: 2px; overflow: hidden; background: #14304a; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-main { grid-column: 1 / -1; aspect-ratio: 16/9; }

.room-info { background: #fff; border: 1px solid var(--line); padding: 40px 38px; }
.room-badge { display: inline-block; background: rgba(184,148,95,.12); color: var(--gold); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; padding: 7px 14px; margin-bottom: 18px; }
.room-type-name { font-size: 1.8rem; margin-bottom: 14px; }
.room-desc { color: var(--muted); font-size: 1rem; margin-bottom: 24px; }
.room-features { display: flex; flex-wrap: wrap; gap: 10px 18px; border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 30px; }
.room-features span { font-size: .85rem; letter-spacing: .5px; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.room-features span::before { content: ""; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ── Amenities ───────────────────────────────────── */
.amenities { background: var(--navy); }
.amenities .section-head h2 { color: #fff; }
.amenity-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.amenity-grid li {
  background: var(--navy); padding: 40px 22px; text-align: center; color: rgba(255,255,255,.9);
  display: flex; flex-direction: column; align-items: center; gap: 14px; transition: background .3s var(--ease);
}
.amenity-grid li:hover { background: var(--navy-deep); }
.amenity-grid svg { width: 34px; height: 34px; color: var(--gold-light); }
.amenity-grid span { font-size: .9rem; letter-spacing: 1px; }

/* ── Location ────────────────────────────────────── */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.location-text h2 { margin-bottom: 22px; }
.location-text p { color: var(--ink); margin-bottom: 24px; max-width: 50ch; }
.location-list { list-style: none; display: grid; gap: 12px; }
.location-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.location-list li::before { content: "✓"; color: var(--gold); font-weight: 600; }
.location-map { aspect-ratio: 1/1; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(20,48,74,.12); }
.location-map iframe { display: block; width: 100%; height: 100%; }

/* ── Contact ─────────────────────────────────────── */
.contact { background: var(--navy-deep); color: #fff; }
.contact .eyebrow.light { display: inline-block; }
.contact h2 { color: #fff; }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-lead { color: rgba(255,255,255,.82); font-size: 1.1rem; margin: 18px 0 38px; }
.contact-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-direct { text-align: center; margin-top: 32px; color: rgba(255,255,255,.7); letter-spacing: 1px; }
.contact-direct a { color: var(--gold-light); transition: color .3s; }
.contact-direct a:hover { color: #fff; }
.contact-sep { margin: 0 12px; opacity: .4; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: #0b1c2c; color: rgba(255,255,255,.6); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; font-size: .9rem; letter-spacing: .5px; }
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
.footer-copy { font-size: .82rem; letter-spacing: .5px; }
.footer-powered { text-align: center; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-powered a { color: var(--gold-light); font-weight: 500; transition: color .3s var(--ease); }
.footer-powered a:hover { color: #fff; }

/* ── Lightbox ────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(11,28,44,.94); display: none; place-items: center; padding: 40px; }
.lightbox.open { display: grid; }
.lightbox-content { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-content figcaption { color: rgba(255,255,255,.85); margin-top: 16px; letter-spacing: 1.5px; text-transform: uppercase; font-size: .8rem; display: flex; gap: 14px; align-items: center; justify-content: center; }
.lightbox-count { color: var(--gold-light); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 2rem; line-height: 1; border-radius: 50%; transition: background .3s var(--ease), border-color .3s var(--ease); }
.lightbox-nav:hover { background: rgba(184,148,95,.85); border-color: var(--gold); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
@media (max-width: 560px) {
  .lightbox-nav { width: 46px; height: 46px; font-size: 1.6rem; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}
.lightbox-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .3s; }
.lightbox-close:hover { opacity: 1; }

/* ── Map consent overlay ─────────────────────────── */
.location-map { position: relative; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 24px;
  background: repeating-linear-gradient(45deg, rgba(184,148,95,.05) 0 18px, transparent 18px 36px), linear-gradient(135deg, #2b4a63, #14304a); }
.map-consent p { color: rgba(255,255,255,.85); max-width: 34ch; font-size: .95rem; }
.location-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ── Cookie consent bar ──────────────────────────── */
.cookie-bar { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 140%); z-index: 150;
  width: min(680px, calc(100% - 32px)); background: var(--navy-deep); color: rgba(255,255,255,.9);
  border: 1px solid rgba(201,169,106,.35); box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 20px 24px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  transition: transform .5s var(--ease); }
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-text { font-size: .9rem; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 11px 22px; font-size: .76rem; }
.cookie-decline { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); }
.cookie-decline:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); }
@media (max-width: 560px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ── Reveal on scroll ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 980px) {
  .room-showcase { grid-template-columns: 1fr; gap: 32px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { aspect-ratio: 16/10; min-height: 0; }
  .location-map { aspect-ratio: 16/10; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: var(--navy-deep);
    flex-direction: column; justify-content: center; gap: 26px; padding: 40px; transform: translateX(100%);
    transition: transform .4s var(--ease); }
  .nav.open { transform: none; }
  .nav a { font-size: 1rem; }
  .menu-btn { display: flex; }
  .site-header { background: var(--navy-deep); }
  .menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-btn.active span:nth-child(2) { opacity: 0; }
  .menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 600px) {
  .g-main { aspect-ratio: 16/10; }
  .about-facts { gap: 26px; }
  .brand-sub { display: none; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
