/* ============================================================
   Karklė & Nida — Main Stylesheet
   Palette: Baltic Forest Green + Warm Amber + Sand
   ============================================================ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --green:       #1C3A2A;
  --green-mid:   #2A5240;
  --green-light: #264838;
  --amber:       #C4883A;
  --amber-light: #D9A05A;
  --sand:        #F4EDD8;
  --sand-dark:   #EDE3C8;
  --white:       #FAFAF8;
  --charcoal:    #1E1E1E;
  --grey:        #6B6B6B;
  --grey-light:  #E8E8E8;
  --border:      rgba(0,0,0,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:       72px;
  --radius:      10px;
  --radius-lg:   18px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);

  --transition:  0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

p { margin-bottom: 0.85em; }
p:last-child { margin-bottom: 0; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--green);
}

.title-light { color: var(--sand); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.eyebrow-light { color: var(--amber-light); }

.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: -0.4rem;
  margin-bottom: 2.5rem;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-white    { background: var(--white); }
.section-sand     { background: var(--sand); }
.section-green    { background: var(--green); }
.section-green-light { background: var(--green-light); }
.section-contact  { background: var(--green); padding: 3rem 0; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* On interior pages (no full hero), always show solid nav */
body:not(.has-hero) .navbar { background: var(--green); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.logo-amp { color: var(--amber); margin: 0 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover, .nav-link.nav-active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--amber-light); }

/* Language switcher */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.18); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 150px;
  z-index: 200;
}
.lang-menu.open { display: block; }

.lang-option {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  cursor: pointer;
  transition: background var(--transition);
}
.lang-option:hover { background: var(--sand); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero (Home) ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--green);
}

.hero-home {
  background: linear-gradient(145deg, #0f2218 0%, #1C3A2A 50%, #2A4A35 100%);
}

/* Subtle animated texture overlay */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 30% 20%, rgba(196,136,58,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(196,136,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,34,24,0.3) 0%, rgba(15,34,24,0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 2rem;
  margin-top: -2rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ─── Page Hero (sub-pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(320px, 45vh, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--green);
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f2218 0%, #1C3A2A 60%, #2A4A35 100%);
}

.page-hero-overlay-amber {
  background: linear-gradient(145deg, #1a0f05 0%, #3a2010 50%, #2A1A08 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.page-hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.65);
}

/* Location tabs */
.location-tabs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 3;
}

.loc-tab {
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  border-top: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.loc-tab:hover { color: var(--white); background: rgba(0,0,0,0.4); }

.loc-tab-active {
  color: var(--white);
  background: rgba(0,0,0,0.2);
  border-top-color: var(--amber);
}

/* ─── Wave Dividers ─────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  background: var(--green);
  margin-top: -1px;
}

.wave-divider svg { display: block; width: 100%; }
.wave-white { background: var(--white); }
.wave-sand { background: var(--amber); }

.section-divider-dune {
  line-height: 0;
  background: var(--white);
  margin-top: -1px;
}
.section-divider-dune svg { display: block; width: 100%; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196,136,58,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.84rem; }

/* ─── Cards (Home) ──────────────────────────────────────── */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--green-mid);
}

.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.04); }

.card-img-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.card-body { padding: 1.5rem; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  transition: color var(--transition);
}
.card-link:hover { color: var(--green); }

/* Image placeholders */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%) !important;
  min-height: 200px;
}
.img-placeholder::after {
  content: '📷';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

/* ─── Pizza Teaser (Home) ────────────────────────────────── */
.pizza-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pizza-teaser-text .section-title { margin-bottom: 1rem; }
.pizza-desc { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

.pizza-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: var(--green-mid);
}
.pizza-teaser-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Amenities ─────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.amenity { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.amenity-icon {
  width: 52px; height: 52px;
  background: var(--sand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background var(--transition), transform var(--transition);
}
.amenity-icon svg { width: 22px; height: 22px; }
.amenity:hover .amenity-icon { background: var(--amber); color: var(--white); transform: translateY(-2px); }

.amenity-label { font-size: 0.85rem; font-weight: 500; color: var(--grey); }

/* ─── Contact Strip ─────────────────────────────────────── */
.contact-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.15rem;
}

.contact-value {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-value:hover { color: var(--amber-light); }

.fb-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition);
}
.fb-link:hover { background: rgba(255,255,255,0.18); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}

.footer-logo { opacity: 0.9; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--amber-light); }

.footer-lang { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }

.footer-lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
  padding: 0.15rem 0;
}
.footer-lang-btn:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Location Intro ─────────────────────────────────────── */
.location-intro {
  margin-bottom: 3rem;
}

.location-intro-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.location-intro-badge-nida { background: rgba(255,255,255,0.2); }

.location-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.location-title-light { color: var(--sand); }

.location-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-intro-text p { color: var(--grey); font-size: 0.97rem; }
.text-light p { color: rgba(255,255,255,0.75); }

.location-intro-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--sand);
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
}

.details-light {
  background: rgba(255,255,255,0.1);
  border-left-color: var(--amber-light);
}

.detail-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  align-items: flex-start;
}

.details-light .detail-item { color: rgba(255,255,255,0.8); }

.detail-icon { flex-shrink: 0; font-size: 1rem; }

/* ─── Apartment Cards ────────────────────────────────────── */
.apt-card {
  margin-bottom: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.apt-card-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.apt-card-featured { border-top: 3px solid var(--amber); }

.apt-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.apt-card-dark .apt-card-header { border-bottom-color: rgba(255,255,255,0.1); }

.apt-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  min-width: 2.5rem;
}

.apt-number-light { color: var(--amber-light); }
.apt-number-special { font-size: 1.8rem; }

.apt-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

.apt-title-light { color: var(--white); }

.apt-location { font-size: 0.82rem; color: var(--grey); margin: 0; }
.apt-location-light { color: rgba(255,255,255,0.5); }

.apt-price-badge {
  margin-left: auto;
  text-align: right;
}
.price-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--amber); }
.price-unit { font-size: 0.8rem; color: var(--grey); display: block; }

.apt-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Gallery */
.apt-gallery { position: relative; }

.apt-main-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--green-mid);
}

.apt-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apt-main-img-link:hover .apt-main-img { transform: scale(1.04); }

.gallery-zoom-hint {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.apt-main-img-link:hover .gallery-zoom-hint { background: rgba(0,0,0,0.25); }

.apt-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
}

.apt-thumbs a {
  aspect-ratio: 1.3;
  overflow: hidden;
  background: var(--green-mid);
  display: block;
}

.apt-thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.apt-thumbs a:hover img { transform: scale(1.08); opacity: 0.9; }

/* Apartment info panel */
.apt-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.apt-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.65; }
.apt-card-dark .apt-desc { color: rgba(255,255,255,0.7); }

.apt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.apt-tag {
  padding: 0.3rem 0.75rem;
  background: var(--sand);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
}

.apt-tag-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.apt-contact-cta { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: auto; }

/* Sauna specs */
.sauna-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: var(--sand);
  border-radius: var(--radius);
}

.sauna-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
}
.spec-icon { font-size: 1rem; }

/* ─── Contact Info Block ─────────────────────────────────── */
.contact-info-block {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info-block-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.text-light { color: var(--sand) !important; }
.contact-info-block-dark h3 { color: var(--sand); }

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.contact-details-grid p { margin-bottom: 0.4rem; }
.contact-details-grid a { color: var(--amber); }
.contact-details-grid a:hover { text-decoration: underline; }

.map-wrap { border-radius: var(--radius); overflow: hidden; }

/* ─── Pizza Page ─────────────────────────────────────────── */
.pizza-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.pizza-intro-text p { color: var(--grey); font-size: 0.97rem; margin-bottom: 1rem; }
.pizza-intro-text .btn { margin-top: 0.5rem; }

.pizza-intro-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pizza-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 500;
  min-width: 200px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pizza-badge:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.pizza-badge-icon { font-size: 1.3rem; }

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.menu-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.menu-item:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }

.menu-item-featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #fff 0%, #fdf6eb 100%);
}

.menu-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

.menu-item-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: rgba(196,136,58,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.menu-item-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.5; margin: 0; }

.menu-note {
  text-align: center;
  padding: 2rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--grey);
}
.menu-note p { margin-bottom: 1.2rem; }

/* Pizza gallery */
.pizza-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pizza-gallery-item {
  aspect-ratio: 1.3;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--green-mid);
}

.pizza-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pizza-gallery-item:hover img { transform: scale(1.05); }

/* ─── Animations ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pizza-teaser { grid-template-columns: 1fr; gap: 2rem; }
  .pizza-teaser-img { height: 260px; }
  .location-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .apt-card-body { grid-template-columns: 1fr; }
  .apt-main-img-link { height: 220px; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .pizza-intro { grid-template-columns: 1fr; }
  .pizza-intro-badges { flex-direction: row; flex-wrap: wrap; }
  .pizza-badge { min-width: 0; flex: 1 1 calc(50% - 0.375rem); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }

  .nav-link, .nav-phone {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
  }

  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { justify-content: center; }

  .cards-2 { grid-template-columns: 1fr; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .contact-strip { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .apt-thumbs { grid-template-columns: repeat(3, 1fr); }

  .location-tabs { position: static; transform: none; width: 100%; margin-top: 1rem; }
  .loc-tab { flex: 1; text-align: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .pizza-intro-badges { flex-direction: column; }
  .pizza-badge { flex: none; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .page-hero { height: auto; min-height: 300px; padding-bottom: 1rem; }
}

@media (max-width: 400px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Print ───────────────────────────────────────────────── */
@media print {
  .navbar, .hero-scroll-hint, .wave-divider, .section-divider-dune { display: none; }
  .section { padding: 1rem 0; }
  .apt-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ─── Video Section ─────────────────────────────────────── */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-container {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}
/* ─── Menu Images ──────────────────────────────────────── */
.menu-images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.menu-image-item {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.menu-image-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.menu-image-label {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}