/**
 * Hotel Page Styles
 * Matching the v0 demo design with Tailwind-inspired utility approach
 */

/* Hide breadcrumbs on hotel pages */
.path-node.node--type-hotel .breadcrumb,
.path-node.node--type-hotel .region--breadcrumb,
.page-node-type-hotel .breadcrumb,
.page-node-type-hotel .region--breadcrumb,
body.node--type-hotel .breadcrumb,
body.node--type-hotel .region--breadcrumb,
.breadcrumb,
.region--breadcrumb {
  display: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hotel-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hotel-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hotel-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 50%, transparent);
  z-index: 2;
}

.hotel-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hotel-hero__text {
  max-width: 800px;
}

.hotel-hero__title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: Georgia, 'Times New Roman', serif;
}

.hotel-hero__location {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.hotel-hero__rating {
  font-size: 1.5rem;
  color: #fbbf24; /* Yellow-400 */
  margin-top: 0.5rem;
}

.hotel-hero__rating .star {
  margin-right: 2px;
}

/* Responsive hero */
@media (max-width: 768px) {
  .hotel-hero {
    height: 50vh;
    min-height: 400px;
  }

  .hotel-hero__title {
    font-size: 2rem;
  }

  .hotel-hero__location {
    font-size: 1rem;
  }

  .hotel-hero__rating {
    font-size: 1.25rem;
  }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.hotel-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */
.hotel-overview-section {
  margin-bottom: 4rem;
}

.hotel-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hotel-overview-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.hotel-overview-content {
  line-height: 1.8;
}

.hotel-subheader {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #6b7280; /* text-gray-600 */
}

.hotel-description {
  margin-bottom: 2rem;
}

.hotel-description p {
  margin-bottom: 1rem;
}

/* Highlights List */
.hotel-highlights {
  margin-top: 2rem;
}

.hotel-highlights h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.hotel-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-highlights__item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.hotel-highlights__item .checkmark {
  color: #10b981; /* text-green-500 */
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.125rem;
}

/* ============================================
   SIDEBAR - HOTEL FACTS
   ============================================ */
.hotel-sidebar {
  position: relative;
}

.hotel-facts {
  background-color: #f9fafb; /* bg-gray-50 */
  border: 1px solid #e5e7eb; /* border-gray-200 */
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}

.hotel-facts__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.hotel-facts__list {
  margin-bottom: 1.5rem;
}

.hotel-fact {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hotel-fact:last-child {
  border-bottom: none;
}

.hotel-fact__label {
  font-weight: 500;
  color: #6b7280;
}

.hotel-fact__value {
  font-weight: 600;
  color: #111827; /* text-gray-900 */
}

.hotel-booking a {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb; /* bg-blue-600 */
  color: white;
  text-align: center;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.hotel-booking a:hover {
  background-color: #1d4ed8; /* bg-blue-700 */
}

/* ============================================
   SECTIONS
   ============================================ */
section.hotel-rooms,
section.hotel-dining,
section.hotel-amenities,
section.hotel-location,
section.hotel-gallery {
  margin-bottom: 4rem;
}

.hotel-section__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

/* ============================================
   ROOMS & DINING CARDS
   ============================================ */
.hotel-rooms__content,
.hotel-dining__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hotel-rooms__content,
  .hotel-dining__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hotel-rooms__content {
    grid-template-columns: repeat(3, 1fr);
  }

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

.room-card,
.dining-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: white;
}

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

.room-card__image,
.dining-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-card__image img,
.dining-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.room-card__content,
.dining-card__content {
  padding: 1.25rem;
}

.room-card__title,
.dining-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.room-card__description,
.dining-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   AMENITIES GRID
   ============================================ */
.hotel-amenities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .hotel-amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hotel-amenities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hotel-amenity-category {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.hotel-amenity-category__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.hotel-amenity-category__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-amenity-item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.hotel-amenity-item .checkmark {
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.hotel-location__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hotel-location__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hotel-location__address h3,
.hotel-location__nearby h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.hotel-location__map {
  margin-top: 1rem;
}

.hotel-location__map-placeholder {
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

/* ============================================
   GALLERY
   ============================================ */
.hotel-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hotel-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hotel-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hotel-gallery__grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.hotel-gallery__grid img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.checkmark {
  color: #10b981;
  font-weight: bold;
}

.star {
  color: #fbbf24;
}
