/* ============================================================
   SECTIONS — About, Rooms, Restaurant, Booking Banner,
               Location/Contact, Footer
   ============================================================ */

/* ── About ── */
#about { background: var(--dark); }

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

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--dark);
}

.about-badge {
  position: absolute;
  bottom: 30%;
  left: 62%;
  transform: translate(-50%, 50%);
  background: var(--gold);
  color: var(--dark);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  border: 3px solid var(--dark);
}

.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.about-badge span {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-text { padding-right: 20px; }

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

.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Rooms ── */
#rooms { background: var(--dark-mid); }

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

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

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease;
}

.room-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.room-card:hover { z-index: 2; }

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

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

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 23, 0.9) 0%, rgba(28, 26, 23, 0.1) 50%, transparent 100%);
  transition: opacity 0.4s;
}

.room-card:hover .room-overlay {
  background: linear-gradient(to top, rgba(28, 26, 23, 0.95) 0%, rgba(28, 26, 23, 0.3) 50%, rgba(28, 26, 23, 0.1) 100%);
}

.room-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.room-category {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.room-card:first-child .room-name { font-size: 30px; }

.room-desc {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.room-card:hover .room-desc { max-height: 80px; }

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.4s;
}

.room-card:hover .room-link { opacity: 1; }

.room-link::after {
  content: '→';
  transition: transform 0.3s;
}

.room-link:hover::after { transform: translateX(4px); }

/* ── Restaurant ── */
#restaurant { background: var(--dark); overflow: hidden; }

.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.restaurant-images {
  position: relative;
  overflow: hidden;
}

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

.restaurant-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.2);
}

.restaurant-content {
  background: var(--dark-mid);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurant-hours {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 150, 110, 0.2);
}

.hours-item { display: flex; flex-direction: column; }

.hours-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.hours-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}


/* ── Booking Banner ── */
.booking-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a07850 100%);
  padding: 72px 0;
  text-align: center;
}

.booking-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
}

.booking-banner p {
  font-size: 13px;
  color: rgba(28, 26, 23, 0.7);
  letter-spacing: 1px;
  margin-bottom: 32px;
}

/* ── Location / Contact ── */
#location { background: var(--dark-mid); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.location-details { display: flex; flex-direction: column; }

.contact-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}

.contact-list a:hover { color: var(--gold); }

.contact-list p {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}

.map-container {
  border-radius: 2px;
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(184, 150, 110, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

.checkin-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(184, 150, 110, 0.15);
  margin-top: 32px;
  border-radius: 2px;
  overflow: hidden;
}

.checkin-item {
  background: var(--dark);
  padding: 20px 24px;
  text-align: center;
}

.checkin-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.checkin-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
}

/* ── Footer ── */
footer {
  background: #0f0e0b;
  padding: 72px 0 32px;
  border-top: 1px solid rgba(184, 150, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.1);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 150, 110, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 110, 0.1);
}

.social-link svg { width: 14px; height: 14px; fill: var(--gold); }

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cream); }

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

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
}
