

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  --text: #2c1c0a;
  --muted: #5a3e1c;
  --accent: #d4a24c; /* Gold/Earth tone */
  --border: rgba(0, 0, 0, 0.15);
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  --blue-accent: #2980b9; /* Preserved from second block for specific buttons */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background: linear-gradient(to bottom, #f2ede7, #d6c8b5);
}

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

/* =========================================
   2. NAVIGATION
   ========================================= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: 1375px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  background: url("https://www.transparenttextures.com/patterns/wood-pattern.png");
  background-color: #6b4226;
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 36px;
  height: auto;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  color: #f0e6d2;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
  color: #f0e6d2;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-links a.active {
  color: #fff;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #2c1c0a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta:hover {
  filter: brightness(1.05);
}

/* Burger Menu Icon */
.burger {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  margin-right: 0.25rem;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 2px;
}

/* Burger Animation State */
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 860px) {
  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .nav-links {
    position: fixed;
    inset: 64px 12px auto 12px;
    top: 68px;
    background: #6b4226;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 0.8rem 1rem;
    border-radius: 8px;
  }

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

  .burger {
    display: inline-block;
  }
}

/* =========================================
   3. SLIDESHOW SECTION
   ========================================= */
.slideshow-container {
  position: relative;
  max-width: 1375px;
  margin: 2rem auto;
  padding: 1em;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: none;
  width: 100%;
  border-radius: 12px;
}

#about-us p {
  text-align: justify;
}
#o-nas p {
  text-align: justify;
}


.active-slide {
  display: block;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0, 0, 0, 0.5);
}

.next {
  right: 1em;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slideshow-brand {
  text-align: center;
  margin: 1.5rem auto 2.5rem;
}

.slideshow-brand img {
  width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 0.6rem;
}

.slideshow-brand h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* =========================================
   4. OFFERS & CARDS
   ========================================= */
.offers {
  max-width: 1375px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.offers h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.offers-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.offer-card {
  position: relative;
  width: 300px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-info {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}

.offer-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.offer-info p {
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

.offer-btn {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent);
  color: #2c1c0a;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s;
}

.offer-btn:hover {
  background-color: #b88734;
}

/* =========================================
   5. MENU PAGE
   ========================================= */
.menu-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.menu-page h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.menu-section {
  margin-bottom: 2.5rem;
}

.menu-section h2 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dotted #bba;
}

.menu-item span:last-child {
  font-weight: 600;
  color: var(--muted);
}

/* =========================================
   6. HOT TUB SECTION
   ========================================= */
.hot-tub {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.hot-tub h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.hot-tub .subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.tub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.tub-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: transform 0.2s ease;
}

.tub-card:hover {
  transform: translateY(-4px);
}

.tub-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.tub-card h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.tub-card .price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.note {
  background: #f9f4ec;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
}

/* =========================================
   7. ROOMS & GUEST INFO (From Block 2)
   ========================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.room-card:hover {
  transform: translateY(-4px);
}

.room-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.room-info {
  padding: 1rem;
}

.room-info h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--text);
}

.room-info .price {
  font-weight: 600;
  color: var(--accent);
}

.room-info .note {
  font-size: 0.9rem;
  color: var(--muted);
}

.guest-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.guest-info h2 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.guest-info ul {
  list-style: disc;
  padding-left: 1.2rem;
  line-height: 1.6;
}

/* =========================================
   8. ABOUT SECTIONS
   ========================================= */
/* General About */
.about {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Specific Property About (from Block 2) */
.about-property {
  margin: 2rem auto;
  max-width: 900px;
  padding: 0 1rem;
  line-height: 1.7;
  color: #333;
}

.about-property h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #2c3e50;
}

.about-property h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--blue-accent);
}

.about-property p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.info-btn {
  background-color: var(--blue-accent);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.info-btn:hover {
  background-color: #1f6390;
}

/* =========================================
   9. OPENING HOURS
   ========================================= */
.opening-hours {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.opening-hours h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hours-container p {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0.7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.hours-container .icon-summer,
.hours-container .icon-winter {
  font-size: 1.5rem;
}

.hours-container p.summer {
  background-color: rgba(255, 223, 85, 0.2);
}

.hours-container p.winter {
  background-color: rgba(173, 216, 230, 0.2);
}

/* =========================================
   10. REVIEWS
   ========================================= */
.reviews {
  max-width: 1375px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.review-card {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
  max-height: 80px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.review-card p::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 10px;
  background: linear-gradient(to right, transparent, #fff);
}

.review-card p.expanded::after {
  content: "";
}

.review-card p.expanded {
  max-height: 1000px;
}

.review-author {
  font-weight: 600;
  color: var(--text);
}

.stars {
  color: #f4c542;
  margin-bottom: 0.5rem;
}

.show-more {
  display: inline-block;
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.85rem;
}

/* =========================================
   11. AMENITIES
   ========================================= */
.amenities {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.amenities h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.amenities h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.amenity:hover {
  transform: translateY(-5px);
}

.amenity i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* =========================================
   12. ACTIVITIES & TRIPS
   ========================================= */
.activities {
  max-width: 1375px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: left;
}

.activities h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.activities h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.activities .intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Activity Icon Boxes */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

/* Trip Cards */
.trips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trip-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-5px);
}

.trip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.trip-info {
  padding: 1rem;
}

.trip-info h4 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.trip-info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Nearby List */
.activities .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activities .list li {
  background: #fff;
  margin-bottom: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.activities .list i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* =========================================
   13. FOOTER
   ========================================= */
footer {
  width: 100%;
  background: url("https://www.transparenttextures.com/patterns/wood-pattern.png");
  background-color: #6b4226;
  color: #fff;
  padding: 3rem 1rem;
  border-top: 2px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer h2,
footer h3 {
  color: #ffd;
  margin-bottom: 1rem;
}

.footer-grid {
  max-width: 1375px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: left;
  width: 100%;
}

.contact-info i {
  margin-right: 0.5rem;
}

.socials {
  margin: 1rem 0;
}

.socials a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fff;
}

.map {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 1375px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #f0e6d2;
}

/* =========================================
   14. MODAL (POPUP)
   ========================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: var(--shadow);
  text-align: center;
}

.close {
  color: #888;
  float: right;
  margin: -20px -10px;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: none;
}

.close:hover {
  color: var(--accent);
}

.modal .phone {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
}

.modal .phone:hover {
  text-decoration: underline;
}

.booking-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.booking-btn:hover {
  background: #333;
}

footer a {
  color: white !important;
}


.language-switcher {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 0.5rem; */
  /* margin-left: 1rem; */
}

.language-switcher a, .flag {
  display: flex !important;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.language-switcher a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.language-switcher img {
  width: 24px;
  height: auto;
  display: block;
}
/*