/* ============================================
   PENSIUNEA FRANK SYDNEY — Global Stylesheet
   Design System: Timișoara Boutique
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --night:    #1A1A2E;
  --cream:    #F5EFE6;
  --gold:     #C8A96E;
  --gold-dark:#A8893E;
  --teal:     #2C5F5C;
  --teal-light:#3D8A86;
  --white:    #FFFFFF;
  --gray-light: #F0EAE0;
  --gray-mid:  #9A8E80;
  --text-body: #3A3028;

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

  --radius: 6px;
  --shadow: 0 4px 24px rgba(26,26,46,0.10);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.18);

  --max-w: 1140px;
  --section-pad: 80px 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* --- Ornamental Border (Secession motif) --- */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.25);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.site-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Main Nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
#main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
#main-nav a:hover {
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}
#main-nav a.active {
  color: var(--gold);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  border-left: 1px solid rgba(200,169,110,0.25);
  padding-left: 16px;
}
.lang-switcher a {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 7px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--gold);
  background: rgba(200,169,110,0.12);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
#mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--night);
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 12px 24px 20px;
  gap: 4px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav a:hover { color: var(--gold); }
.mobile-lang {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  margin-top: 4px;
}
.mobile-lang a {
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  border-bottom: none !important;
  padding: 6px 12px !important;
  background: rgba(200,169,110,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6) !important;
}
.mobile-lang a.active,
.mobile-lang a:hover { color: var(--gold) !important; background: rgba(200,169,110,0.2) !important; }


/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imagini/hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,46,0.78) 0%,
    rgba(26,26,46,0.55) 50%,
    rgba(44,95,92,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid rgba(200,169,110,0.4);
  padding: 5px 16px;
  border-radius: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 42px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 4px 20px rgba(200,169,110,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px rgba(200,169,110,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(44,95,92,0.35);
}
.btn-teal:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 30px rgba(44,95,92,0.45);
}

.btn-icon { font-size: 1.1rem; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.scroll-arrow { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: var(--section-pad);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--night);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Dark section variant */
.section--dark {
  background: var(--night);
}
.section--dark .section-title { color: var(--white); }
.section--dark .section-desc { color: rgba(255,255,255,0.6); }

/* Cream section variant */
.section--cream {
  background: var(--cream);
}


/* ============================================
   ABOUT / INTRO STRIP (Home)
   ============================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--night);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 700;
}
.about-img-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.about-img-badge .badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text {}
.about-text .section-eyebrow { text-align: left; display: block; margin-bottom: 10px; }
.about-text .section-title { text-align: left; margin-bottom: 16px; }

.about-body {
  font-size: 0.975rem;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.highlight-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.highlight-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--night); }
.highlight-text span { font-size: 0.78rem; color: var(--gray-mid); }


/* ============================================
   CAMERE & FACILITĂȚI
   ============================================ */
#camere {}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--cream);
}

.room-body {
  padding: 20px 22px 24px;
}
.room-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(44,95,92,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 8px;
}
.room-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-amenity {
  font-size: 0.75rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 4px;
}
.room-amenity::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Facilities Grid */
.facilities-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--night);
  text-align: center;
  margin-bottom: 36px;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.facility-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.facility-item:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.facility-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.facility-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--night);
  line-height: 1.35;
}


/* ============================================
   GALERIE FOTO
   ============================================ */
#galerie {
  background: var(--night);
}
#galerie .section-title { color: var(--white); }
#galerie .section-desc { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 200px;
}
.gallery-item:first-child img { min-height: 420px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,46,0.35); }
.gallery-overlay-icon {
  color: white;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; }


/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info { }

.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}
.contact-detail:first-child { padding-top: 0; }

.contact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  text-align: center;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--night);
}
.contact-detail-value a:hover { color: var(--teal); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--night);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; }
.form-note {
  font-size: 0.74rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
}


/* ============================================
   BOOKING STRIP (CTA Band)
   ============================================ */
#booking-strip {
  background: var(--teal);
  padding: 60px 20px;
}
.booking-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.booking-strip-inner .section-title {
  color: var(--white);
  margin-bottom: 12px;
}
.booking-strip-inner .section-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
.booking-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-booking {
  background: var(--white);
  color: var(--night);
}
.btn-booking:hover {
  background: var(--cream);
}
.btn-airbnb {
  background: #FF5A5F;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,90,95,0.35);
}
.btn-airbnb:hover {
  background: #e04a4f;
}


/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--night);
  color: rgba(255,255,255,0.6);
  padding: 60px 20px 30px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  margin-bottom: 28px;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 320px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; }
.footer-lang {
  display: flex;
  gap: 12px;
}
.footer-lang a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-lang a:hover,
.footer-lang a.active { color: var(--gold); }
.footer-ornament {
  border: none;
  border-top: 1px solid rgba(200,169,110,0.15);
  margin: 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }

  /* Header mobile */
  #main-nav, .lang-switcher { display: none; }
  .menu-toggle { display: flex; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 10px; bottom: -15px; }
  .about-highlights { grid-template-columns: 1fr; }

  .rooms-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: 1 / -1;
  }
  .gallery-item:first-child img { min-height: 250px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .booking-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .hero-title { font-size: 2rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   LOGO SVG INLINE
   ============================================ */
.logo-svg-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-svg-wrap svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text-block .logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-text-block .logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-logo-svg {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

/* ============================================
   PLATFORMS / BOOKING SECTION
   ============================================ */
#platforms {
  background: var(--cream);
}

.platforms-intro {
  text-align: center;
  margin-bottom: 48px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.platforms-grid-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: var(--night);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-align: center;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.platform-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.platform-emoji {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}
.platform-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--night);
  letter-spacing: 0.02em;
}
.platform-action {
  font-size: 0.72rem;
  color: var(--gray-mid);
  display: block;
}
.platform-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 2px;
}
.badge-rezerva {
  background: rgba(200,169,110,0.15);
  color: var(--gold-dark);
}
.badge-recenzie {
  background: rgba(44,95,92,0.1);
  color: var(--teal);
}
.badge-social {
  background: rgba(26,26,46,0.08);
  color: var(--night);
}

/* Booking platforms — specific brand colors on hover */
.platform-card.booking:hover   { border-color: #003580; }
.platform-card.airbnb:hover    { border-color: #FF5A5F; }
.platform-card.travelminit:hover { border-color: #E31837; }
.platform-card.tripadvisor:hover { border-color: #34E0A1; }
.platform-card.facebook:hover  { border-color: #1877F2; }
.platform-card.google:hover    { border-color: #4285F4; }
.platform-card.revngo:hover    { border-color: #FF6600; }
.platform-card.directbooking:hover { border-color: #0099CC; }

@media (max-width: 900px) {
  .platforms-grid,
  .platforms-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .platforms-grid,
  .platforms-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .platform-card { padding: 18px 10px 16px; }
}

/* ============================================
   LOGO IMAGE (real logo)
   ============================================ */
.logo-svg-wrap svg { display: none; }
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

/* ============================================
   ROOM CARD — IMAGE SLIDER
   ============================================ */
.room-slider {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/3;
}
.room-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}
.room-slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.room-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,26,46,0.55);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  line-height: 1;
}
.room-slider-btn:hover { background: rgba(26,26,46,0.85); }
.room-slider-btn.prev { left: 8px; }
.room-slider-btn.next { right: 8px; }
.room-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.room-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.room-slider-dot.active { background: white; }

/* Price badge */
.room-price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: var(--gold);
  color: var(--night);
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.room-price-label {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
}
.room-price-note {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Grid 2 cols on wide for 7 cards */
@media (min-width: 1025px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}
