/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,22,36,0.5) 0%, rgba(15,22,36,0.35) 50%, rgba(15,22,36,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1rem;
  max-width: 760px;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* BOOKING BAR */
.booking-bar {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 10;
}
.booking-form {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.booking-field {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.booking-field label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  transition: border-color var(--transition);
}
.booking-field input:focus,
.booking-field select:focus { border-bottom-color: var(--gold); }
.booking-field select option { background: var(--navy-deep); }
.booking-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.booking-submit {
  margin: 1rem 1.5rem 1rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ABOUT PREVIEW */
.about-preview { padding: 5.5rem 4%; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.badge-num { display: block; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.badge-text { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-highlights {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.highlight-item i { color: var(--gold); font-size: 1rem; }

/* ROOMS PREVIEW */
.rooms-preview { padding: 5.5rem 4%; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.room-card-img { position: relative; overflow: hidden; }
.room-card-img img { height: 260px; transition: transform 0.6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,22,36,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.room-card:hover .room-card-overlay { opacity: 1; }
.room-card-body { padding: 1.5rem; }
.room-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.room-card-header h3 { font-size: 1.2rem; color: var(--navy); }
.room-price { font-size: 0.85rem; color: var(--text-mid); text-align: right; }
.room-price strong { display: block; font-size: 1.3rem; color: var(--gold); }
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.room-features span {
  font-size: 0.78rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.room-features i { color: var(--gold); }

/* DINING */
.dining-section {
  position: relative;
  padding: 7rem 4%;
  text-align: center;
  overflow: hidden;
}
.dining-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.dining-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,22,36,0.75), rgba(15,22,36,0.8));
}
.dining-content { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }

/* REVIEWS */
.reviews-section { padding: 5.5rem 4%; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 2.5rem;
}
.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-score { font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }
.rating-count { font-size: 0.85rem; color: var(--text-mid); }
.reviews-carousel { max-width: 720px; margin: 0 auto; position: relative; overflow: hidden; }
.review-slide { display: none; }
.review-slide.active { display: block; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold);
}
.review-quote { color: var(--gold); font-size: 1.5rem; margin-bottom: 1rem; }
.review-text { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.review-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.review-author span { font-size: 0.8rem; color: var(--text-light); }
.review-stars { margin-left: auto; color: var(--gold); font-size: 0.9rem; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.carousel-prev, .carousel-next {
  background: none; border: 1.5px solid var(--gold);
  color: var(--gold); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-prev:hover, .carousel-next:hover { background: var(--gold); color: #fff; }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream-dark); cursor: pointer; transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* GALLERY PREVIEW */
.gallery-preview { padding: 5.5rem 4%; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,22,36,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.5rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* LOCATION PREVIEW */
.location-preview { padding: 5.5rem 4%; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.location-detail i { margin-top: 3px; }
.attractions-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.attractions-list li:last-child { border-bottom: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img { height: 360px; }
  .about-badge { right: 1rem; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .booking-form { flex-direction: column; align-items: stretch; }
  .booking-sep { display: none; }
  .booking-field { padding: 0.75rem 1.25rem; }
  .booking-submit { margin: 0 1.25rem 1.25rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 1; }
  .rating-summary { flex-wrap: wrap; }
  .review-card { padding: 1.5rem; }
}

/* ===== MOTOPRESS CUSTOM OVERRIDES ===== */
.mphb-availability-search-form {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.mphb-availability-search-form > p {
  flex: 1;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mphb-availability-search-form label {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-family: 'Lato', sans-serif !important;
  margin: 0 !important;
}

.mphb-availability-search-form input,
.mphb-availability-search-form select {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.95rem !important;
  padding: 0.3rem 0 !important;
  outline: none !important;
  width: 100% !important;
  border-radius: 0 !important;
}

.mphb-availability-search-form input:focus {
  border-bottom-color: var(--gold) !important;
}

.mphb-availability-search-form .mphb-submit-button-wrapper {
  flex-shrink: 0;
  margin-bottom: 5px;
}

.mphb-availability-search-form .mphb-search-submit-button {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 0.85rem 2rem !important;
  border-radius: var(--radius) !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

.mphb-availability-search-form .mphb-search-submit-button:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.mphb-required-fields-tip { display: none !important; }

@media (max-width: 768px) {
  .mphb-availability-search-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem;
  }
}

