/* Hotels modul - Vizuális elkülönítés */

/* ============================================
   TOURISM SECOND-LEVEL NAVIGATION
   ============================================ */
.tourism-nav {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.tourism-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.tourism-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tourism-nav__link:hover,
.tourism-nav__link.active {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  border-color: #d4af37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.tourism-nav__icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Vertical separator between groups */
.tourism-nav__separator {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .tourism-nav__container {
    gap: 0.75rem;
    padding: 0.5rem;
    justify-content: center;
  }
  
  .tourism-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .tourism-nav__icon {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   1. Hotels gyorsgomb a fejlécben (opcionális)
   ============================================ */
.hotels-quick-access {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}

.hotels-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.hotels-cta-btn:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.hotels-cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobil: gombot kicsinyítjük */
@media (max-width: 768px) {
  .hotels-quick-access {
    margin: 0 0.5rem;
  }
  
  .hotels-cta-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .hotels-cta-btn span {
    display: none; /* Csak ikon mobilo */
  }
}

/* ============================================
   2. HOTELS HERO BANNER - Kereső
   ============================================ */
.hotels-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hotels-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hotels-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hotels-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hotels-hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hotels-hero__search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}

.hotels-hero__search input[type="text"] {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hotels-hero__search input[type="text"]:focus {
  outline: none;
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.hotels-hero__search input[type="text"]::placeholder {
  color: #999;
}

.hotels-hero__btn {
  flex: 0 0 auto;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.hotels-hero__btn:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.hotels-hero__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Mobil responsive */
@media (max-width: 768px) {
  .hotels-hero {
    padding: 2rem 1rem;
  }
  
  .hotels-hero__title {
    font-size: 1.75rem;
  }
  
  .hotels-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hotels-hero__search {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hotels-hero__search input[type="text"] {
    flex: 1 1 auto;
    min-width: 100%;
  }
  
  .hotels-hero__btn {
    width: 100%;
    padding: 1rem;
  }
}

/* 3. Hotels oldalak body osztály */
.hotels-page {
  /* Későbbi színváltáshoz, pl. eltérő háttér vagy navigáció színe */
  background: #fafafa;
}

/* 4. Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: #999;
}

.breadcrumb a {
  color: #1a73e8;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: #333;
  font-weight: 500;
}

/* 4. Hotel kártyák (lista) */
.hotels-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hotels-list .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.hotel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hotel-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.hotel-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

.hotel-card__title {
  padding: 1rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.hotel-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.hotel-card__title a:hover {
  color: #d4af37;
}

.hotel-card__desc {
  padding: 0 1rem 1rem;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 5. Hotel részletek */
.hotel-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

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

.hotel-title {
  font-size: 2.5rem;
  margin: 0;
  color: #1a1a1a;
}

.hotel-video {
  margin: 2rem 0;
}

.hotel-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.hotel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotel-meta {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.hotel-meta p {
  margin: 0.5rem 0;
}

.hotel-meta a {
  color: #1a73e8;
  text-decoration: none;
}

.hotel-meta a:hover {
  text-decoration: underline;
}

.hotel-description {
  margin: 2rem 0;
  line-height: 1.8;
  color: #333;
}

.hotel-gallery {
  margin: 3rem 0;
}

.hotel-gallery h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.hotel-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hotel-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

/* 6. Lapozás */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-size: 1rem;
}

.pagination a {
  color: #1a73e8;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.pagination a:hover {
  background: #f0f0f0;
}

.page-current {
  font-weight: 600;
  color: #333;
}

/* 7. Grid helper (lista oldalhoz) */
.grid {
  display: grid;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-16 {
  gap: 1rem;
}

.responsive-grid {
  /* Mobil: 1 oszlop */
  grid-template-columns: 1fr;
}

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

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