/* ===== VARIABLES ===== */
:root {
  --gold: #b8976e;
  --gold-light: #d4b896;
  --gold-dark: #9a7a56;
  --green: #2b3d2d;
  --green-light: #3a5240;
  --green-dark: #1a2a1c;
  --cream: #f9f6f1;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0dbd4;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: 0.3s ease;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-left a { color: rgba(255,255,255,0.85); }
.top-bar-left a:hover { color: var(--gold-light); }
.top-bar-left i { margin-right: 5px; color: var(--gold); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  transition: color var(--transition);
}
.top-bar-right a:hover { color: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.logo-text h1,
.logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green);
  line-height: 1.2;
  display: block;
}
.logo-text span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: rgba(43,61,45,0.06);
}
.nav-links a.btn-reserve {
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links a.btn-reserve:hover {
  background: var(--gold-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--green);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,42,28,0.4) 0%, rgba(26,42,28,0.6) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 20px 80px;
}
.hero-content h1,
.hero-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--green);
  padding: 30px 0;
  margin-top: -1px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
  color: var(--white);
}
.feature-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image .badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
}
.about-image .badge span { display: block; font-size: 2rem; line-height: 1; }
.about-image .badge small { font-size: 0.75rem; text-transform: uppercase; }
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 20px;
}
.about-text p { color: var(--text-light); margin-bottom: 15px; }
.about-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}
.about-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.about-amenities li i { color: var(--gold); font-size: 0.9rem; }

/* ===== ROOMS ===== */
.rooms-section { background: var(--cream); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.room-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.room-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-card-image .room-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.room-card-body { padding: 25px; }
.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 10px;
}
.room-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  min-height: 3.6em;
  line-height: 1.2em;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.room-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.room-features span i { color: var(--gold); font-size: 0.85rem; }
.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}
.room-price {
  font-size: 0.85rem;
  color: var(--text-light);
}
.room-price strong {
  font-size: 1.4rem;
  color: var(--green);
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-light); }
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid.full {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid.full .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43,61,45,0);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(43,61,45,0.3); }
.gallery-item .gallery-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  color: var(--white);
  font-size: 1.5rem;
  z-index: 2;
  transition: transform var(--transition);
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%,-50%) scale(1); }
.gallery-more {
  text-align: center;
  margin-top: 30px;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--cream); }
.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--green);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.reviews-score .score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.reviews-score .score-text { text-align: left; }
.reviews-score .score-text strong { display: block; font-size: 1.1rem; }
.reviews-score .score-text span { font-size: 0.85rem; opacity: 0.7; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.review-card p { color: var(--text-light); font-size: 0.95rem; font-style: italic; margin-bottom: 15px; }
.review-card .reviewer { font-weight: 600; font-size: 0.9rem; color: var(--green); }
.review-card .review-date { font-size: 0.8rem; color: var(--text-light); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
a.news-card, .news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.news-card-body { padding: 25px; }
.news-card-body .news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
}
.news-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.news-card-body a.read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.news-card-body a.read-more:hover { color: var(--gold-dark); }

/* ===== CTA ===== */
.cta-section {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-section p { opacity: 0.8; margin-bottom: 25px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-cards {
  display: grid;
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.contact-card i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 5px;
}
.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 0.9rem;
}
.contact-card a:hover { color: var(--gold); }
.contact-form { display: grid; gap: 15px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== RESERVATION ===== */
.reservation-frame {
  background: var(--cream);
  padding: 40px 0 60px;
}
.reservation-frame iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 10;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,151,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.page-header .breadcrumb {
  font-size: 0.9rem;
  opacity: 0.7;
}
.page-header .breadcrumb a { color: var(--gold-light); }

/* ===== ROOM DETAIL ===== */
.room-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.room-detail:last-child { border-bottom: none; }
.room-detail:nth-child(even) { direction: rtl; }
.room-detail:nth-child(even) > * { direction: ltr; }
.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.room-gallery .main-img { grid-column: span 2; }
.room-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: opacity var(--transition);
}
.room-gallery img:hover { opacity: 0.9; }
.room-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 15px;
}
.room-info p { color: var(--text-light); margin-bottom: 20px; }
.room-amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}
.room-amenities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.room-amenities-list li i { color: var(--gold); }
.room-info .price-box {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.room-info .price-box .from { font-size: 0.85rem; color: var(--text-light); }
.room-info .price-box .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.room-info .price-box .per { font-size: 0.85rem; color: var(--text-light); }

/* ===== DOJAZD ===== */
.directions-section { background: var(--cream); }
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.direction-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.direction-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.direction-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 10px;
}
.direction-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== GALLERY FILTER ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.gallery-filters button {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition);
}
.gallery-filters button.active,
.gallery-filters button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ===== SEO HIDDEN ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== ANIMATIONS ===== */
/* ===== OFFER PAGE ===== */
.offer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.offer-card {
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius);
}
.offer-card:hover { border-color: var(--gold-light); }
.offer-icon {
  width: 52px; height: 52px; background: rgba(184,151,110,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; margin-bottom: 18px;
}
.offer-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--green); margin-bottom: 10px; }
.offer-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; margin-bottom: 12px; }
.offer-languages { display: flex; gap: 16px; margin-top: 8px; }
.offer-languages span { font-size: 0.85rem; color: var(--gold-dark); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.link-more { color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
.link-more:hover { color: var(--green); }

.attractions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.attraction-item { text-align: center; padding: 24px; }
.attraction-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.attraction-item h4 { font-family: var(--font-heading); color: var(--green); margin-bottom: 8px; font-size: 1.1rem; }
.attraction-item p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .top-bar { padding: 6px 0; }
  .top-bar .container { justify-content: center; }
  .top-bar-left { gap: 16px; }
  .top-bar-left span:not(.top-bar-icon-only) { display: none; }
  .top-bar-left a span { display: none; }
  .top-bar-left i { margin-right: 0; font-size: 1rem; }
  .top-bar-right a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 15px; }
  .hero-content h1,
  .hero-content h2 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 2rem; }
  .page-header { padding: 80px 0 40px; }
  .page-header h1 { font-size: 2rem; }
  .directions-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery .main-img { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero { height: 70vh; }
  .hero-content h1,
  .hero-content h2 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; }
  .about-amenities { grid-template-columns: 1fr; }
  .room-amenities-list { grid-template-columns: 1fr; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .top-bar, .footer, .lightbox, .hamburger { display: none; }
  .hero { height: auto; min-height: 0; }
  body { font-size: 12pt; }
}
