/* ============================================
   HOTEL RÉSZLETES OLDAL - MODERN DIZÁJN
   ============================================ */

/* Hero galéria */
.hotel-hero-gallery {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hotel-hero-main {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hotel-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 3rem 2rem 2rem;
}

.hotel-hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Hero simple (ha nincs kép) */
.hotel-hero-simple {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.hotel-title-simple {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

/* Breadcrumb container */
.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hotel detail container */
.hotel-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
}

/* Bal oldal: main content */
.hotel-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Kapcsolat kártyák */
.hotel-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #d4af37;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #d4af37;
  stroke-width: 2;
}

.contact-content {
  flex: 1;
}

.contact-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-content p,
.contact-content a {
  margin: 0;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  word-break: normal;
}

.contact-content a:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* E-mail linkek: ne törjenek meg, hosszú esetben ... */
.contact-content a[href^="mailto:"] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

/* Leírás kártya */
.hotel-description-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e0e0e0;
}

.hotel-description-card h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.75rem;
  color: #1a3a52;
}

.hotel-description-card p {
  line-height: 1.8;
  color: #555;
}

/* Video kártya */
.hotel-video-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e0e0e0;
}

.hotel-video-card h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.75rem;
  color: #1a3a52;
}

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

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

/* Jobb oldal: Galéria sidebar */
.hotel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hotel-gallery-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #e0e0e0;
  position: sticky;
  top: 1rem;
}

.hotel-gallery-sidebar h2 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #1a3a52;
}

.hotel-gallery-grid-sidebar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-more {
  text-align: center;
  margin: 1rem 0 0 0;
  font-size: 0.875rem;
  color: #666;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* Mobil responsive */
@media (max-width: 1024px) {
  .hotel-detail-container {
    grid-template-columns: 1fr;
  }
  
  .hotel-sidebar {
    order: -1; /* Galéria felülre mobil nézetben */
  }
  
  .hotel-gallery-sidebar {
    position: static;
  }
  
  .hotel-gallery-grid-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hotel-hero-gallery {
    height: 300px;
  }
  
  .hotel-hero-title {
    font-size: 2rem;
  }
  
  .hotel-title-simple {
    font-size: 2rem;
  }
  
  .hotel-contact-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .hotel-gallery-grid-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}
