/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f7fb;
  color: #2c3e50;

  /* Yazı netliği (özellikle Mac) */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* JS intro */
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.page-loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER
========================= */
.page-header {
  text-align: center;
  padding: 80px 20px 60px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================
   SEO INTRO (varsa)
========================= */
.seo-intro {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.seo-intro h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.seo-intro p {
  max-width: 720px;
  line-height: 1.75;
  color: #555;
}

/* =========================
   LIST
========================= */
.hotel-list {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 80px;
}

/* =========================
   CARD
========================= */
.hotel-card {
  display: flex;
  align-items: flex-start; /* 🔥 yamuk hissi BURADA bitiyor */
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 32px;
  gap: 32px;
  border: 1px solid #e9edf3;

  /* JS animasyon başlangıcı */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}

.hotel-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

/* =========================
   LOGO
========================= */
.hotel-logo {
  flex: 0 0 200px;
  height: 140px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hotel-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.hotel-card:hover .hotel-logo img {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 25px rgba(59, 130, 246, 0.35));
}

/* =========================
   CONTENT
========================= */
.hotel-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hotel-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;

  /* 🔥 DÜZ OKUMA */
  max-width: 720px;
  text-align: left;
  letter-spacing: 0.1px;
  word-spacing: normal;
}

/* =========================
   FOOTER
========================= */
.page-footer {
  background: #0f172a;
  color: #cbd5e1;
  text-align: center;
  padding: 28px 15px;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hotel-card {
    flex-direction: column;
    text-align: center;
  }

  .hotel-logo {
    width: 100%;
    height: 160px;
  }

  .hotel-content p,
  .seo-intro p {
    max-width: 100%;
    text-align: center;
  }

  .hotel-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 15px;
  }

  .hotel-content p {
    font-size: 14px;
  }
}
