/* =============================================
   TERASA IMERI — HOTEL WEBSITE STYLES
   ============================================= */

/* Google Fonts are loaded via <link> in HTML — no @import needed here */

/* ---- CSS VARIABLES ---- */
:root {
  --logo-url: url('logo/IMERI_Park_Hotel_logo_redesign_202607231140.jpeg');
  --bg: #FAF8F5;
  --bg-alt: #F2EDE6;
  --card-bg: #FFFFFF;
  --text: #2D2926;
  --text-muted: #7A6F66;
  --accent: #8B6F47;
  --accent-hover: #7A5F3A;
  --accent-light: #C9A87C;
  --accent-pale: #F5EDE0;
  --border: #E2D9CE;
  --shadow-sm: 0 2px 8px rgba(60, 40, 10, 0.08);
  --shadow-md: 0 6px 24px rgba(60, 40, 10, 0.12);
  --shadow-lg: 0 16px 48px rgba(60, 40, 10, 0.16);
  --nav-bg: rgba(250, 248, 245, 0.96);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

[data-theme="dark"] {
  --logo-url: url('logo/imeriblack.png');
  --bg: #1B1916;
  --bg-alt: #242119;
  --card-bg: #2C2926;
  --text: #F0EBE3;
  --text-muted: #9C9188;
  --accent: #C9A87C;
  --accent-hover: #DDB98A;
  --accent-light: #8B6F47;
  --accent-pale: #2E2620;
  --border: #3A3530;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --nav-bg: rgba(27, 25, 22, 0.96);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
}

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Noto Serif Georgian', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 48px;
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif Georgian', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background-image: var(--logo-url);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}

.lang-flag {
  font-size: 1rem;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.1rem;
  transition: all var(--transition);
}

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

/* ---- HERO ---- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/big-photo.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(20, 15, 10, 0.25) 0%,
      rgba(20, 15, 10, 0.55) 60%,
      rgba(20, 15, 10, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-family: 'Noto Serif Georgian', serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.5);
}

.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ---- ABOUT ---- */
#about {
  background: var(--bg);
}

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

.about-text h2 {
  font-family: 'Noto Serif Georgian', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.stat-card {
  background: var(--accent-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Noto Serif Georgian', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

/* ---- ROOMS ---- */
#rooms {
  background: var(--bg-alt);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* Row 1: first 3 cards — each spans 2 of 6 columns */
.rooms-grid .room-card:nth-child(1) {
  grid-column: 1 / 3;
}

.rooms-grid .room-card:nth-child(2) {
  grid-column: 3 / 5;
}

.rooms-grid .room-card:nth-child(3) {
  grid-column: 5 / 7;
}

/* Row 2: last 2 cards — centered by spanning cols 2–4 and 4–6 */
.rooms-grid .room-card:nth-child(4) {
  grid-column: 2 / 4;
}

.rooms-grid .room-card:nth-child(5) {
  grid-column: 4 / 6;
}


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

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.room-image img {
  transition: transform 0.5s ease;
}

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

.room-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.room-info {
  padding: 20px;
}

.room-name {
  font-family: 'Noto Serif Georgian', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.room-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.room-feature {
  background: var(--accent-pale);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

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

.room-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.room-price strong {
  display: block;
  font-family: 'Noto Serif Georgian', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.room-btn {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.room-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ---- GALLERY ---- */
#gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 200px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item:last-child {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-overlay span {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ---- AMENITIES ---- */
#amenities {
  background: var(--bg-alt);
}

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

.amenity-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.amenity-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.amenity-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- LOCATION ---- */
#location {
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.location-info h3 {
  font-family: 'Noto Serif Georgian', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--accent-pale);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.location-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.location-detail span {
  font-size: 0.95rem;
  color: var(--text);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 8px;
}

.directions-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- CONTACT ---- */
#contact {
  background: var(--bg-alt);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.contact-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  word-break: break-word;
}

.contact-card a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent-hover);
}

/* ---- FOOTER ---- */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
}

[data-theme="dark"] footer {
  background: #0F0D0B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-text-footer {
  font-family: 'Noto Serif Georgian', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: var(--accent-pale);
  color: var(--accent);
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */

/* Navbar: switch to hamburger earlier (tablet range 769–960px has too many items) */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

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

  /* Reset custom column positions for tablet */
  .rooms-grid .room-card:nth-child(1),
  .rooms-grid .room-card:nth-child(2),
  .rooms-grid .room-card:nth-child(3),
  .rooms-grid .room-card:nth-child(4),
  .rooms-grid .room-card:nth-child(5) {
    grid-column: auto;
  }

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

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }


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

  .about-image {
    height: 280px;
    order: -1;
  }

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

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

  /* Reset custom column positions for mobile */
  .rooms-grid .room-card:nth-child(1),
  .rooms-grid .room-card:nth-child(2),
  .rooms-grid .room-card:nth-child(3),
  .rooms-grid .room-card:nth-child(4),
  .rooms-grid .room-card:nth-child(5) {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4),
  .gallery-item:last-child {
    grid-column: span 1;
  }

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

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

  .map-wrapper {
    height: 300px;
  }

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

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

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

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

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

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  /* --- Navbar compact for small phones --- */
  .nav-container {
    height: 58px;
    padding: 0 14px;
    gap: 8px;
  }

  .nav-logo {
    font-size: 1rem;
    gap: 7px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .nav-controls {
    gap: 4px;
  }

  /* Show only the flag, hide the text code */
  .lang-btn .lang-code {
    display: none;
  }

  .lang-btn {
    padding: 5px 6px;
    border-radius: 6px;
    min-width: unset;
  }

  .lang-flag {
    font-size: 1.05rem;
  }

  .theme-toggle,
  .hamburger {
    width: 34px;
    height: 32px;
    font-size: 1rem;
    border-radius: 6px;
  }

  /* Keep mobile menu anchored to new nav height */
  .mobile-menu {
    top: 58px;
  }
}

/* ---- SCROLL REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ROOM LIGHTBOX */
.room-lightbox-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  width: 95vw;
  max-width: 1400px;
}

/* =============================================
   GALLERY MORE BUTTON
   ============================================= */
.gallery-more-wrapper {
  text-align: center;
  margin-top: 40px;
  /* Adds space between your images and the button */
  width: 100%;
}

.btn-more {
  display: inline-block;
  padding: 14px 32px;
  background-color: #8c6b4a;
  /* Adjust to match your theme's primary color */
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-more:hover {
  background-color: #6b5035;
  /* Slightly darker for hover state */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Optional: Support for your Dark Theme */
[data-theme="dark"] .btn-more {
  background-color: #a88764;
  color: #121212;
}

[data-theme="dark"] .btn-more:hover {
  background-color: #c09f7a;
}

.room-lightbox-side-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.room-lightbox-main {
  flex: 3;
  width: 100%;
  height: 100%;
  max-width: 60vw;
  max-height: 85vh;
  object-fit: scale-down;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.room-lightbox-side {
  width: 100%;
  height: 25vh;
  object-fit: scale-down;
  background-color: transparent;
  border-radius: var(--radius);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.room-lightbox-side:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .room-lightbox-content {
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 100vh;
  }

  .room-lightbox-side-col {
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }

  .room-lightbox-main {
    max-width: 100%;
    max-height: 40vh;
    margin: 20px 0;
  }

  .room-lightbox-side {
    height: 100px;
  }
}

/* GALLERY MORE BUTTON */
.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.35);
  border: 1px solid transparent;
}

.more-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.45);
}


/* Cookie Banner - Terasa Imeri Theme */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px; /* Keeps it elegant and not too wide */
  margin: 0 auto;
  
  /* Hooks directly into your existing color palette */
  background-color: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-lg);
  
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
  
  /* Smooth entrance animation */
  transition: opacity var(--transition, 0.3s ease), transform var(--transition, 0.3s ease);
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-content h4 {
  margin: 0 0 8px 0;
  color: var(--text);
  font-size: 1.1rem;
}

.cookie-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.banner-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.banner-buttons .btn {
  padding: 10px 20px;
  border-radius: var(--radius, 8px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition, 0.3s ease), color var(--transition, 0.3s ease);
}

/* Primary Action uses your Accent color */
.banner-buttons .accept {
  background-color: var(--accent);
  color: #ffffff;
  border: none;
}

.banner-buttons .accept:hover {
  background-color: var(--accent-hover);
}

/* Secondary Action uses alternate background */
.banner-buttons .decline {
  background-color: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
}

.banner-buttons .decline:hover {
  background-color: var(--border);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 20px;
  }
  .banner-buttons {
    flex-direction: column;
  }
  .banner-buttons .btn {
    width: 100%;
  }
}

/* შექმნა დავით ენდელაძემ */
