/* ===========================
   Hotel Alsterquelle – Modern Design
   =========================== */

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

:root {
  --primary:   #1B3A4B;
  --primary-light: #264d63;
  --accent:    #C4A35A;
  --accent-light: #d4b870;
  --bg:        #F8F5F0;
  --bg-white:  #ffffff;
  --text:      #2c2c2c;
  --text-light:#666666;
  --border:    #e0d8ce;
  --shadow:    0 4px 24px rgba(27,58,75,0.10);
  --radius:    12px;
  --transition: 0.3s ease;
  --nav-height: 70px;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.accent-bar {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem 0 1.5rem;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,163,90,0.35);
}

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

/* ===========================
   NAVIGATION
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(27, 58, 75, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background var(--transition);
}

#navbar.scrolled {
  background: var(--primary);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: white;
}
.nav-logo .logo-main {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(196,163,90,0.2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
  padding: 0.3rem 0.7rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--primary);
  z-index: 999;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* ===========================
   HERO
   =========================== */
#hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(
    135deg,
    rgba(27,58,75,0.85) 0%,
    rgba(27,58,75,0.65) 50%,
    rgba(196,163,90,0.25) 100%
  ),
  url('../images/hero.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.hero-content {
  color: white;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   HIGHLIGHTS STRIP
   =========================== */
#highlights {
  background: var(--primary);
  padding: 2.5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.highlight-item {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-icon {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.highlight-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.highlight-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===========================
   ABOUT / WELCOME
   =========================== */
#about {
  padding: 6rem 0;
}

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

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.about-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}
.about-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-badge .years-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

/* ===========================
   ROOMS
   =========================== */
#rooms {
  padding: 6rem 0;
  background: var(--bg-white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.room-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(27,58,75,0.15);
}

.room-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

/* Slider */
.room-slider {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.42);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
  opacity: 0;
}

.room-image:hover .slider-btn,
.room-image:focus-within .slider-btn {
  opacity: 1;
}

.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-prev { left: 0.45rem; }
.slider-next { right: 0.45rem; }

.slider-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: white;
  transform: scale(1.25);
}

.room-body {
  padding: 1.5rem;
}

.room-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.room-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.amenity-tag {
  background: rgba(27,58,75,0.06);
  color: var(--primary);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.room-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.room-price .from {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.room-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.room-price .per-night {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Price Table */
.price-table-wrap {
  margin-top: 3rem;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background: var(--primary);
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.price-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: rgba(27,58,75,0.03); }
.price-table tr:hover td { background: rgba(196,163,90,0.08); }

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

/* ===========================
   BREAKFAST
   =========================== */
#breakfast {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

#breakfast .section-title { color: white; }
#breakfast .section-subtitle { color: rgba(255,255,255,0.75); }
#breakfast .accent-bar { margin: 0.75rem auto 1.5rem; }

.breakfast-content {
  max-width: 680px;
  margin: 0 auto;
}

.breakfast-price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

.breakfast-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.bf-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.bf-feature .icon { font-size: 2rem; }

/* ===========================
   SERVICES
   =========================== */
#services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(27,58,75,0.06);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196,163,90,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===========================
   EVENT SPACE
   =========================== */
#events {
  padding: 6rem 0;
  background: var(--bg-white);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.events-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.events-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.event-tag {
  background: rgba(27,58,75,0.08);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.events-capacity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(196,163,90,0.1);
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.events-capacity .cap-icon { font-size: 1.5rem; }
.events-capacity .cap-text { font-size: 0.9rem; color: var(--text-light); }
.events-capacity .cap-num { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* ===========================
   PARTNER HOTELS
   =========================== */
#partners {
  padding: 6rem 0;
  background: var(--bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(27,58,75,0.05);
}

.partner-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 25px rgba(27,58,75,0.1);
}

.partner-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.partner-details {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.partner-details span {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.partner-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===========================
   DIRECTIONS
   =========================== */
#directions {
  padding: 6rem 0;
  background: var(--bg-white);
}

.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.directions-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.direction-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.direction-block h4 {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.direction-block p, .direction-block address {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}

.map-embed iframe,
#hotelMap {
  width: 100%;
  height: 380px;
  border: none;
}

/* ===========================
   CONTACT
   =========================== */
#contact {
  padding: 6rem 0;
  background: var(--primary);
  color: white;
}

#contact .section-title { color: white; }
#contact .section-subtitle { color: rgba(255,255,255,0.7); }
#contact .accent-bar { margin: 0.75rem 0 1.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-value {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.contact-value a {
  color: rgba(255,255,255,0.9);
}
.contact-value a:hover { color: var(--accent); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

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

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #0f2330;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.82rem; }

/* ===========================
   TOAST / NOTIFICATION
   =========================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.175,.885,.32,1.275);
  border-left: 4px solid var(--accent);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===========================
   SECTION TRANSITIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .about-grid,
  .events-grid,
  .directions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .events-image { height: 280px; }

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

  .about-image img { height: 350px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero { height: auto; min-height: 100vh; padding: 8rem 1.5rem 4rem; }

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

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

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

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

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

  #about, #rooms, #services, #events, #directions, #partners, #breakfast, #contact {
    padding: 4rem 0;
  }

  .map-embed { height: 280px; }
  #hotelMap { height: 280px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .breakfast-features { flex-direction: column; align-items: center; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .price-table { font-size: 0.85rem; }
  .price-table th, .price-table td { padding: 0.65rem 0.75rem; }
}

/* ===========================
   LEGAL MODALS
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 48, 0.78);
  z-index: 10000;
  padding: 1rem;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: var(--bg-white);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  margin: 2rem auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  background: var(--primary);
  gap: 1rem;
}

.modal-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
  line-height: 1;
}

.modal-close:hover { background: rgba(255,255,255,0.28); }

.modal-body {
  padding: 2rem;
  max-height: 72vh;
  overflow-y: auto;
}

/* Legal content */
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.6rem 0 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.legal-content h3:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.legal-content ul {
  margin: 0.4rem 0 0.8rem 1.4rem;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-content li { margin-bottom: 0.3rem; }

.legal-content a { color: var(--accent); word-break: break-all; }

.legal-highlight {
  background: rgba(196,163,90,0.1);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1.1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

.legal-meta {
  color: var(--text-light) !important;
  font-size: 0.82rem !important;
  margin-bottom: 1.5rem !important;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 1rem 1.5rem;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.175,.885,.32,1.1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.87);
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
  margin-left: 0.2rem;
}

.cookie-actions { flex-shrink: 0; }

.cookie-accept { padding: 0.55rem 1.4rem; font-size: 0.87rem; }

/* Form GDPR checkbox */
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-gdpr input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-gdpr label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-gdpr label a { color: var(--accent); text-decoration: underline; }

@media (max-width: 600px) {
  .modal-body { padding: 1.25rem; }
  .modal-header { padding: 1.1rem 1.25rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept { width: 100%; text-align: center; }
}
