@import url("https://use.typekit.net/znl0sej.css");

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

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

body {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #D7C373;
  --gold-dark: #C3B168;
  --text: #1A1A1B;
  --green: #205F4C;
  --green-dark: #1D5644;
  --cream: #E8DEC4;
  --brown: #4D3D37;
  --brown-dark: #362B27;
  --light: #F6F6F6;
  --gray: #B2B2B2;
  --teal: #293A3B;
  --teal-dark: #1A2525;
  --white: #FFFFFF;
  --cdn: "../wp-content/uploads/";
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "dejanire-headline", serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 2.1231rem + 1.2308vw, 3rem);
}

h2 {
  font-size: clamp(2.1rem, 1.9154rem + 0.8205vw, 2.5rem);
}

h3 {
  font-size: clamp(1.8rem, 1.7077rem + 0.4103vw, 2rem);
}

h4 {
  font-size: clamp(1.5rem, 1.4308rem + 0.3077vw, 1.625rem);
}

h5 {
  font-size: 1.25rem;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

strong {
  font-weight: 700;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== LABEL / TAG ===== */
.label-gold {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: 16px;
}

.label-white {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  border: 2px solid var(--gold);
  padding: 10px 32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  border-width: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  border-width: 3px;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text);
  border-width: 3px;
}

.btn-dark {
  background: var(--text);
  color: var(--white);
  border: 2px solid var(--text);
}

.btn-dark:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  border-width: 3px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: left;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid,
.site-header.header-light {
  background: rgba(41, 58, 59, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.16);
  padding: 14px 0;
}

.site-header.header-transparent-light {
  background: transparent;
}

.site-header.header-transparent-light .nav-links a {
  color: var(--text);
}

.site-header.header-transparent-light .logo-white {
  display: none;
}

.site-header.header-transparent-light .logo-dark {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s;
}

.logo-white {
  display: block;
}

.logo-dark {
  display: none;
}

.logo-dark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.site-header.solid .nav-links a:hover,
.site-header.solid .nav-links a.active,
.site-header.header-light .nav-links a:hover,
.site-header.header-light .nav-links a.active {
  color: var(--gold);
}

.nav-booking {
  margin-left: 16px;
}

.nav-booking .btn {
  color: var(--text);
}

.nav-booking .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  border-width: 2px;
  color: var(--text);
}

/* ===== LANGUAGE SWITCHER ===== */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.site-header.header-transparent-light .nav-lang,
.site-header.header-transparent-light .nav-lang a {
  border-left-color: rgba(0,0,0,0.15);
}

.nav-lang a {
  display: flex;
  line-height: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.nav-lang a:hover {
  opacity: 1;
}

.nav-lang img {
  width: 21px;
  height: 15px;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.mobile-nav-lang {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-lang a {
  display: flex;
  line-height: 0;
  opacity: 0.85;
}

.mobile-nav-lang img {
  width: 24px;
  height: 17px;
  border-radius: 2px;
  display: block;
}

@media (max-width: 1180px) {
  .nav-lang {
    margin-left: 4px;
    padding-left: 12px;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.hamburger.open {
  opacity: 0;
  pointer-events: none;
}

.site-header.nav-open {
  pointer-events: none;
}

.site-header.header-transparent-light .hamburger span {
  background: var(--text);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--text);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--white);
  padding: 14px 40px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--teal);
  color: var(--white);
  position: relative;
}

.footer-gold-top {
  width: 100%;
  height: 4px;
  background: var(--gold);
}

.footer-body {
  padding: 100px 0 80px;
  background-image: url("../wp-content/uploads/2026/09/footer-illustration.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.footer-bar {
  background: var(--teal-dark);
  min-height: 80px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer-bar .container {
  width: 100%;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bar p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-bar-logo {
  height: 36px;
  width: auto;
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-full {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-overlay-40 {
  background: rgba(0,0,0,0.4);
}

.hero-overlay-50 {
  background: rgba(0,0,0,0.5);
}

.hero-overlay-60 {
  background: rgba(0,0,0,0.6);
}

.hero-overlay-angled {
  background: linear-gradient(269deg, #02010100 0%, #262626 58%);
}

.hero-overlay-35 {
  background: rgba(0,0,0,0.35);
}

.hero-content.hero-content-left {
  text-align: left;
  margin: 0;
  padding: 0;
  max-width: 620px;
}

.hero-content.hero-content-left p {
  margin-left: 0;
  margin-right: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-video {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 30px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-content h1 {
  color: #F6F6F6;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-light {
  background: var(--cream);
  min-height: 50vh;
}

.hero-pull-80 { margin-top: -80px; }
.hero-pull-100 { margin-top: -100px; }

/* ===== ROOM HERO STAT CARD ===== */
.room-hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 60px;
  margin-top: -100px;
}

.room-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--light);
}

.room-stat-item {
  min-height: 96px;
  text-align: center;
}

.room-stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.room-stat-value {
  font-family: "dejanire-headline", serif;
  font-size: clamp(1.8rem, 1.7077rem + 0.4103vw, 2rem);
  font-weight: 500;
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .room-hero-card { padding: 20px; margin-top: -60px; }
  .room-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SHIP TICKET BANNER (Lodní lístek) ===== */
.ship-ticket-banner {
  background: var(--cream);
  padding: 40px 60px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.ship-ticket-text {
  flex: 1 1 55%;
}

.ship-ticket-price {
  position: relative;
  padding-left: 40px;
  border-left: 2px dotted var(--text);
  margin: -20px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ship-ticket-banner {
    flex-direction: column;
    gap: 34px;
    padding: 34px 20px;
    align-items: stretch;
  }
  .ship-ticket-price {
    border-left: none;
    border-top: 3px solid var(--text);
    margin: 0;
    padding: 20px 0 0;
  }
}

.hero-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-label {
  margin-bottom: 8px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.bg-cream { background: var(--cream); }
.bg-green { background: linear-gradient(137deg, #1F5F4C 0%, #0A322F 100%); }
.bg-green-dark { background: var(--green-dark); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-teal { background: var(--teal); }
.bg-brown { background: var(--brown-dark); }

/* ===== 2-COL SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-img {
  position: relative;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-img-tall img {
  height: 520px;
}

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.room-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.room-card:hover .room-card-img img {
  transform: scale(1.04);
}

.room-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card-name {
  font-family: "dejanire-headline", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-card-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.room-card-price {
  font-family: "dejanire-headline", serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.room-card-meta-line {
  font-size: 0.875rem;
  color: #5C5C5C;
}

.room-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.room-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-card-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.room-card-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== TRIP GRID ===== */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trip-card {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  padding: 24px 24px 10px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
}

.trip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #000 100%);
  opacity: 0.76;
}

.trip-card-name,
.trip-card-meta {
  position: relative;
  z-index: 1;
}

.trip-card-name {
  font-family: "dejanire-headline", serif;
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
}

.trip-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}

.trip-card-meta span img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.trip-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== AMENITIES ===== */
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--green);
}

.amenity-icon svg,
.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== ACCORDION ===== */
.accordion {
  border-top: 1px solid rgba(0,0,0,0.12);
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

details {
  cursor: pointer;
}

details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s;
  flex-shrink: 0;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444;
}

.accordion-body ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== BOOKING BOX (Lodní lístek) ===== */
.booking-box {
  background: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-box h4 {
  font-family: "dejanire-headline", serif;
  color: var(--text);
}

.booking-box .price {
  font-family: "dejanire-headline", serif;
  font-size: 2.5rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.booking-box .price-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 400;
}

/* ===== TRIP INFO BADGES ===== */
.trip-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trip-badge {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  min-width: 220px;
}

.trip-badge-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  flex-shrink: 0;
}

.trip-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trip-badge-icon-mask {
  width: 100%;
  height: 100%;
  background-color: var(--green);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.trip-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}

.trip-badge-value {
  font-family: "dejanire-headline", serif;
  font-size: 1.75rem;
  color: var(--text);
}

/* ===== CONTENT BOX ===== */
.content-box {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 48px;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .form-row-3col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-checkbox input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== FORM — PLAIN (serif labels, flat inputs) ===== */
.form-plain .form-group label {
  font-family: "dejanire-headline", serif;
  font-weight: 500;
  font-size: 1.375rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 12px;
}

.form-plain .form-group input,
.form-plain .form-group textarea,
.form-plain .form-group select {
  border: none;
  padding: 16px;
}

.form-plain .form-checkbox label {
  font-size: 1rem;
  color: var(--text);
}

.form-plain button[type="submit"] {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
}

/* ===== EVENT CARDS ===== */
.event-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 32px;
  backdrop-filter: blur(4px);
}

.event-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.event-date-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(80%) sepia(24%) saturate(561%) hue-rotate(9deg) brightness(93%) contrast(88%);
}

.event-name {
  font-family: "dejanire-headline", serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 16px;
}

/* ===== EVENT MINI CARDS (homepage teaser) ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-mini-card {
  border: 1px solid rgba(0,0,0,0.08);
  display: block;
}

.event-mini-title {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 20px 24px;
}

.event-mini-body {
  background: var(--light);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem;
  color: var(--text);
}

.event-mini-row svg,
.event-mini-row img {
  width: 22px;
  height: 22px;
  color: var(--text);
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ===== ICON GRID ===== */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: center;
}

.icon-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 130px;
}

.icon-grid-item svg,
.icon-grid-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.icon-grid-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.icon-grid-sm {
  gap: 24px 32px;
}

.icon-grid-sm .icon-grid-item {
  gap: 8px;
  max-width: 80px;
}

.icon-grid-sm .icon-grid-item svg,
.icon-grid-sm .icon-grid-item img {
  width: 32px;
  height: 32px;
}

.icon-grid-sm .icon-grid-item span {
  font-size: 0.75rem;
  font-weight: 400;
}

.icon-grid-lg .icon-grid-item {
  gap: 20px;
  max-width: 160px;
}

.icon-grid-lg .icon-grid-item svg,
.icon-grid-lg .icon-grid-item img {
  width: 100px;
  height: 100px;
}

.icon-grid-lg .icon-grid-item span {
  font-size: 0.9375rem;
  font-weight: 400;
}

/* ===== CAROUSEL ===== */
.floating-card {
  padding: 48px;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-br-desktop {
    display: none;
  }

  .hero-home {
    align-items: flex-end;
    background-position: 70% 40% !important;
  }

  .hero-home .hero-content {
    padding-bottom: 56px;
    width: 100%;
  }

  .vodni-sen-section {
    padding-bottom: 48px !important;
  }

  .svatby-preview-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .svatby-preview-panel {
    padding: 48px 24px !important;
  }

  .icon-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px !important;
    justify-items: center;
  }

  .icon-grid-item {
    max-width: none;
  }
}

.footer-grid-3col {
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.footer-social-links {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  .footer-grid-3col {
    grid-template-columns: 1fr;
  }

  .footer-social-links {
    position: static;
    margin-top: 24px;
  }
}

.gallery-grid-4-plain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 640px) {
  .gallery-grid-4-plain {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow:hover {
  background: var(--gold-dark);
}

.carousel-arrow-prev {
  left: -22px;
}

.carousel-arrow-next {
  right: -22px;
}

.carousel-dark .carousel-arrow {
  background: var(--gold);
  color: var(--text);
  border: 1px solid var(--gold);
}

.carousel-dark .carousel-arrow:hover {
  background: var(--gold-dark);
  color: var(--text);
  border-color: var(--gold-dark);
}

@media (max-width: 900px) {
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
  .carousel-arrow-prev { left: -16px; }
  .carousel-arrow-next { right: -16px; }
}

@media (max-width: 640px) {
  .floating-card {
    padding: 24px 20px;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.75rem;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 640px) {
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ===== GALLERY (justified thumbnails w/ lightbox) ===== */
.gallery-justified {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-justified a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 180px;
  cursor: pointer;
}

.gallery-justified img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-justified a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-justified a:hover::after {
  opacity: 1;
}

.gallery-justified a:hover img {
  transform: scale(1.05);
}

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

/* ===== TABS (restaurant menu) ===== */
.tabs-nav {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
}

.tabs-control {
  flex: 1;
  background: var(--light);
  color: var(--text);
  border: none;
  padding: 18px 20px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tabs-control.active {
  background: var(--white);
  color: var(--gold-dark);
}

.tabs-panels {
  background: var(--white);
  padding: 48px 40px;
}

.tabs-panel {
  display: none;
}

.tabs-panel.active {
  display: block;
}

.tabs-panel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.tabs-panel-sidebox {
  border: 1px solid var(--gold);
  background: var(--light);
  padding: 24px;
  align-self: start;
}

@media (max-width: 768px) {
  .tabs-nav { flex-direction: column; }
  .tabs-panels { padding: 32px 24px; }
  .tabs-panel-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== TABS — PLAIN (text tabs on light card) ===== */
.tabs-plain .tabs-nav {
  gap: 40px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 0;
}

.tabs-plain .tabs-control {
  flex: none;
  background: none;
  padding: 24px 0;
  font-family: "dejanire-headline", serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--text);
}

.tabs-plain .tabs-control.active {
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .tabs-plain .tabs-nav {
    gap: 16px;
    padding: 0 24px;
  }
}

/* ===== NEARBY CARDS (výlet) ===== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nearby-card {
  position: relative;
  overflow: hidden;
  height: 240px;
  display: block;
  text-decoration: none;
}

.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.nearby-card:hover img {
  transform: scale(1.04);
}

.nearby-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.nearby-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
}

.nearby-card-name {
  font-family: "dejanire-headline", serif;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.nearby-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.nearby-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nearby-card-meta-item img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ===== PARTNER LOGOS ===== */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 68px;
  width: auto;
  opacity: 1;
  filter: none;
}

/* ===== OVERVIEW ROOM ROW ===== */
.overview-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--gold);
  overflow: hidden;
}

.overview-room.reverse {
  direction: rtl;
}

.overview-room.reverse > * {
  direction: ltr;
}

.overview-room-img {
  min-height: 300px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.oc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.oc-prev {
  left: 6px;
}

.oc-next {
  right: 6px;
}

.overview-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.overview-room:hover .overview-room-img img {
  transform: scale(1.03);
}

.overview-room-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--light);
}

.overview-room-body h3 {
  font-size: clamp(1.6rem, 1.5rem + 0.5vw, 2rem);
}

.overview-room-meta {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--gray);
  flex-wrap: wrap;
}

.overview-room-meta-line {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.overview-room-desc {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

.overview-room-body .btn,
.overview-room-body .btn-outline {
  text-transform: none;
  letter-spacing: 0;
  border-width: 1px;
  padding: 10px 24px;
}

.overview-room-body .btn-outline {
  color: var(--text);
  border-color: var(--gold);
}

.overview-room-body .btn:hover,
.overview-room-body .btn-outline:hover {
  border-width: 1px;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--light);
  padding: 40px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 20px;
}

.contact-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 8px;
}

.contact-card .phone {
  font-family: "dejanire-headline", serif;
  font-size: 1.75rem;
  color: var(--text);
  margin: 8px 0;
}

.contact-card .hours {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-address-card {
  background: var(--green);
  color: var(--white);
  padding: 48px;
  display: block;
  margin-bottom: 40px;
}

.contact-address-card h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact-address-card p {
  color: rgba(255,255,255,0.85);
}

/* ===== PRICING TABLE ===== */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9375rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .period {
  color: #555;
}

.price-row .amount {
  font-weight: 700;
  color: var(--green);
}

.price-table-plain {
  gap: 2px;
}

.price-table-plain .price-row {
  border-bottom: none;
  padding: 3px 0;
  gap: 8px;
  justify-content: flex-start;
  line-height: 1.3;
}

.price-table-plain .price-row .period {
  color: var(--text);
  font-weight: 700;
}

.price-table-plain .price-row .amount {
  color: var(--text);
  font-weight: 400;
}

/* ===== DECORATION ===== */
.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
}

.divider-gold-center {
  margin: 24px auto;
}

/* ===== MENU ITEMS ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.menu-category h5 {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: none;
  gap: 0;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.menu-item-name small {
  display: block;
  font-family: "dejanire-headline", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.3;
  margin-top: 0;
}

.menu-item-price {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  font-size: 0.9375rem;
  line-height: 1.3;
  margin-top: 0;
}

/* ===== SPACE CARDS ===== */
.spaces-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.space-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
}

.space-item.reverse {
  grid-template-columns: 1fr 420px;
}

.space-item.reverse .space-img {
  order: 2;
}

.space-item.reverse .space-body {
  order: 1;
}

.space-img {
  height: 300px;
  overflow: hidden;
}

.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-body {
  background: var(--light);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.space-body h4 {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .space-item {
    grid-template-columns: 1fr;
  }
  .space-item.reverse {
    grid-template-columns: 1fr;
  }
  .space-item.reverse .space-img,
  .space-item.reverse .space-body {
    order: initial;
  }
  .space-body {
    padding: 28px 24px;
  }
}

/* ===== WEDDING LOCATIONS ===== */
.wedding-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.wedding-location {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.wedding-location h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.wedding-location p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
}

/* ===== SVATBY THUMB GRIDS ===== */
.svatby-thumb-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.svatby-thumb img {
  width: 126px;
  height: 151px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.svatby-thumb span {
  display: block;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text);
}

.svatby-location-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.svatby-location img {
  width: 174px;
  height: 232px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.svatby-location span {
  display: block;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text);
}

.svatby-memories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 912px;
  margin: 40px auto 0;
}

.svatby-memories-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ===== PAGE HERO (no image) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 700px;
}

/* ===== HISTORY ===== */
.history-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.history-year {
  font-family: "dejanire-headline", serif;
  font-size: 3rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ===== HISTORY TIMELINE (illustrated) ===== */
.history-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.history-block-text h3 {
  font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2rem);
  margin-bottom: 16px;
}

.history-connector {
  display: flex;
  justify-content: center;
  margin: -10px 0;
}

.history-connector img {
  height: 170px;
  width: auto;
}

.history-connector.flip img {
  transform: scaleX(-1);
}

.history-final {
  text-align: center;
  padding: 24px 0 0;
}

.history-final img {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .history-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .history-block-img {
    order: -1;
  }
  .history-connector img {
    height: 100px;
  }
}

/* ===== BOXED ACCORDION (white cards on dark backdrop) ===== */
.accordion-boxed {
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-boxed .accordion-item {
  background: var(--white);
  border: none;
  padding: 0 28px;
}

/* ===== INFO SPLIT BOX (ceník / stravování style panels) ===== */
.info-split-box {
  background: var(--light);
  padding: 56px 60px;
}

@media (max-width: 768px) {
  .info-split-box { padding: 32px 24px; }
}

/* ===== MASONRY GALLERY ===== */
.gallery-masonry {
  columns: 4;
  column-gap: 12px;
}

.gallery-masonry img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  break-inside: avoid;
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 3; }
}

@media (max-width: 640px) {
  .gallery-masonry { columns: 2; }
}

/* ===== AKCE: FIREMNÍ AKCE / OSLAVY COLUMNS ===== */
.akce-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.akce-col {
  background: var(--light);
  padding: 48px;
}

.akce-col ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
}

@media (max-width: 768px) {
  .akce-cols { grid-template-columns: 1fr; }
}

/* ===== CHATKY SPECIFICS ===== */
.chatky-icons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.chatky-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  padding: 16px 24px;
}

.chatky-icon-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.chatky-icon-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== UTILS ===== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .split {
    gap: 40px;
  }

  .overview-room {
    grid-template-columns: 1fr;
  }

  .overview-room-img {
    height: 280px;
  }

  .overview-room.reverse {
    direction: ltr;
  }

  .space-item,
  .space-item.reverse {
    grid-template-columns: 1fr;
  }

  .space-item .space-img,
  .space-item .space-body,
  .space-item.reverse .space-img,
  .space-item.reverse .space-body {
    order: unset;
  }

  .contact-address-card {
    grid-template-columns: 1fr;
  }

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

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .container {
    max-width: 90%;
    padding: 0 20px;
  }

  section {
    padding: 48px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-full {
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-img-tall img {
    height: 300px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .trips-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bar-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .trip-badges {
    flex-direction: column;
    gap: 12px;
  }

  .trip-badge {
    min-width: auto;
  }

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

  .contact-address-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .booking-box {
    padding: 28px;
  }

  .content-box {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .rezervace-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .history-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-logos {
    gap: 24px;
  }

  .icon-grid {
    gap: 24px 32px;
  }

  .icon-grid-item {
    max-width: 76px;
    gap: 10px;
  }

  .icon-grid-item svg,
  .icon-grid-item img {
    width: 48px;
    height: 48px;
  }

  .wedding-locations {
    grid-template-columns: 1fr;
  }

  .svatby-thumb-grid {
    gap: 16px;
  }

  .svatby-location-grid {
    gap: 16px;
  }

  .svatby-deco-rings {
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    width: 90px !important;
    opacity: 0.15 !important;
  }

  .svatby-deco-flower {
    top: auto !important;
    bottom: 12px !important;
    left: -30px !important;
    width: 160px !important;
    opacity: 0.18 !important;
  }

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

  .hero-pills {
    flex-direction: column;
    align-items: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .overview-room-body {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.form-message {
  margin-top: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.form-message:empty {
  display: none;
}
.form-message-pending {
  color: #666;
}
.form-message-success {
  color: var(--green);
}
.form-message-error {
  color: #B3261E;
}

/* ===== COOKIE BAR ===== */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0;
}

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-bar-actions button {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-bar-actions button:hover {
  opacity: 0.85;
}

.cookie-bar-accept {
  background: var(--gold);
  color: var(--text);
}

.cookie-bar-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4) !important;
}

@media (max-width: 640px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-bar-actions {
    justify-content: stretch;
  }
  .cookie-bar-actions button {
    flex: 1;
  }
}
