/* GastroTrip Partner Widget - egyedi megjelenés */
.partner-page-wrap {
  background: transparent;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ── HERO sáv ── */
.partner-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 40px;
}
.partner-logo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  border: 2px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.partner-logo-placeholder {
  font-size: 13px;
  color: rgba(212,175,55,0.6);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.partner-logo-placeholder svg {
  display: block;
  margin: 0 auto 6px;
}
.partner-hero-info {
  flex: 1;
}
.partner-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 100%);
  color: #1a1a2e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}
.partner-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.partner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* ── Szekció címek ── */
.partner-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-section-title::before,
.partner-section-title::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37);
  flex: 1;
  max-width: 60px;
}
.partner-section-title::after {
  background: linear-gradient(90deg, #d4af37, transparent);
}

/* ── Fotó galéria ── */
.partner-gallery-section {
  margin-bottom: 50px;
}
.partner-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 12px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  background: rgba(255,255,255,0.04);
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(212,175,55,0.5);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  gap: 10px;
}
.gallery-placeholder svg {
  opacity: 0.4;
}

/* ── Videó ── */
.partner-video-section {
  margin-bottom: 50px;
}
.partner-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(0,0,0,0.3);
}
.partner-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Kapcsolat / Linkek ── */
.partner-links-section {
  margin-bottom: 20px;
}
.partner-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.partner-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
}
.partner-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.btn-facebook {
  background: #1877F2;
  color: #fff !important;
  border-color: #1877F2;
}
.btn-facebook:hover {
  background: #1565D8;
}
.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
}
.btn-instagram:hover {
  opacity: 0.9;
}
.btn-tiktok {
  background: #010101;
  color: #fff !important;
  border-color: #69C9D0;
}
.btn-tiktok:hover {
  background: #1a1a1a;
}
.btn-website {
  background: transparent;
  color: #d4af37 !important;
  border: 2px solid #d4af37;
}
.btn-website:hover {
  background: rgba(212,175,55,0.1);
}
.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Szeparátor ── */
.partner-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  margin: 40px 0;
}

@media (max-width: 700px) {
  .partner-hero {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .partner-name {
    font-size: 1.6rem;
  }

  .partner-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: span 1;
    height: 220px;
  }

  .gallery-item {
    height: 180px;
  }

  .partner-links-grid {
    justify-content: center;
  }
}
