/* ===== YÖREX 2026 — Tur · Transfer · Otel · Gezi ===== */
:root {
  --color-earth: #8A5A00;
  --color-earth-dark: #6A3D00;
  --color-terracotta: #FF2D55;
  --color-terracotta-soft: #FF7A90;
  --color-olive: #0B5D57;
  --color-olive-light: #14B8A6;
  --color-cream: #F5F0E8;
  --color-cream-dark: #E8E0D4;
  --color-sand: #D4C4A8;
  --color-white: #FFFEFC;
  --color-text: #2C2619;
  --color-text-muted: #5C5344;
  --color-overlay: rgba(44, 38, 25, 0.75);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(44, 38, 25, 0.12);
  --shadow-strong: 0 16px 48px rgba(44, 38, 25, 0.18);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 196, 168, 0.4);
  transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--color-earth-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.logo-year { font-size: 1rem; font-weight: 500; color: var(--color-terracotta); }
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav a:hover { color: var(--color-terracotta); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 4rem;
  background:
    linear-gradient(160deg, rgba(245, 240, 232, 0.94) 0%, rgba(255, 45, 85, 0.18) 32%, rgba(11, 93, 87, 0.72) 100%),
    url('yorex-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      var(--color-earth) 20px,
      var(--color-earth) 21px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      var(--color-earth) 20px,
      var(--color-earth) 21px
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  color: var(--color-earth-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero-badge {
  border: 1px solid rgba(255, 45, 85, 0.18);
}
.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--color-text);
}
.hero-title-main { display: block; }
.hero-title-accent {
  display: block;
  color: var(--color-terracotta);
  font-style: italic;
}
.hero-desc {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}
.btn-primary:hover {
  background: #E11D48;
  border-color: #E11D48;
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}
.scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-terracotta);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* ----- Section common ----- */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin: 0 0 1rem;
}
.section-title--light { color: var(--color-white); }

/* ----- About ----- */
.about {
  padding: 5rem 0;
  background: var(--color-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p { margin: 0 0 1rem; color: var(--color-text-muted); }
.about-lead { font-size: 1.1rem; color: var(--color-text) !important; }
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-sand);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-card-icon { font-size: 1.5rem; }
.about-card strong { color: var(--color-earth-dark); }
.about-dates {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.about-dates-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
}
.about-dates-month { font-size: 0.9rem; color: var(--color-text-muted); }
.about-dates-dash { color: var(--color-sand); font-weight: 300; }

/* ----- Otel listesi tablosu ----- */
.hotel-table-section {
  padding: 4rem 0;
  background: var(--color-cream-dark);
}
.hotel-table-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--color-text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.hotel-table-subtitle {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  letter-spacing: 0.03em;
}
.hotel-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 38, 25, 0.12);
  background: var(--color-white);
}
.hotel-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.hotel-table thead {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.35) 0%, rgba(255, 154, 122, 0.28) 100%);
}
.hotel-table thead {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.42) 0%, rgba(255, 122, 144, 0.30) 100%);
}
.hotel-table th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  color: var(--color-text);
  border: 1px solid rgba(44, 38, 25, 0.15);
}
.hotel-table th:first-child { border-left: none; }
.hotel-table th:last-child { border-right: none; }
.hotel-table tbody td {
  padding: 1rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(44, 38, 25, 0.1);
  background: var(--color-white);
  color: var(--color-text-muted);
}
.hotel-table tbody tr:hover td { background: var(--color-cream); }

/* ----- Packages ----- */
.packages {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-olive) 0%, #0B2F2D 100%);
  color: var(--color-white);
}
.packages {
  background: radial-gradient(1200px 500px at 20% -10%, rgba(255, 45, 85, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, var(--color-olive) 0%, #0B2F2D 100%);
}
.packages-intro {
  max-width: 560px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.package-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.package-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.package-card--featured {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}
.package-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 999px;
}
.package-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--color-olive-light);
}
.package-card-icon svg { width: 100%; height: 100%; }
.package-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-white);
}
.package-card-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}
.package-card-features {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.package-card-features li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.95;
}
.package-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-olive-light);
  font-weight: 700;
}
.package-card-price {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}
.package-card-price a { color: var(--color-terracotta-soft); text-decoration: underline; }
.package-card-price a { color: rgba(255, 255, 255, 0.92); text-decoration: underline; }
.package-card-price a:hover { color: var(--color-white); }
.packages-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
}
.packages-cta p { margin: 0 0 1rem; opacity: 0.95; }
.packages-cta .btn-primary {
  background: var(--color-white);
  color: var(--color-olive);
  border-color: var(--color-white);
}
.packages-cta .btn-primary:hover {
  background: var(--color-cream);
  color: var(--color-earth-dark);
  border-color: var(--color-cream);
}

/* ----- Booking ----- */
.booking {
  padding: 5rem 0;
  background: var(--color-cream);
}
.booking-intro {
  max-width: 560px;
  margin: 0 0 2rem;
  color: var(--color-text-muted);
}
.booking-form {
  max-width: 640px;
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-cream-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 92, 44, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}
.checkbox-label input { width: 1.2rem; height: 1.2rem; accent-color: var(--color-terracotta); }
.form-actions { margin-top: 1.5rem; }
.btn--large { padding: 1rem 2rem; width: 100%; }

/* ----- Contact ----- */
.contact {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0B2F2D 0%, var(--color-text) 100%);
  color: var(--color-white);
}
.contact {
  background: radial-gradient(900px 420px at 80% -10%, rgba(20, 184, 166, 0.26) 0%, transparent 60%),
    linear-gradient(180deg, #0B2F2D 0%, var(--color-text) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-block {
  text-align: center;
  padding: 1.5rem;
}
.contact-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.contact-block a,
.contact-block p {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0;
}
.contact-block a:hover { color: var(--color-terracotta-soft); text-decoration: underline; }

/* ----- Footer ----- */
.footer {
  padding: 2rem 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--color-white); }
.footer-brand .logo-year { color: var(--color-terracotta-soft); font-size: 0.9rem; }
.footer-brand p { margin: 0.35rem 0 0; opacity: 0.85; }
.footer-copy { margin: 0; opacity: 0.7; }

/* ----- Toast ----- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 1rem 1.5rem;
  background: var(--color-earth-dark);
  color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  font-weight: 500;
  z-index: 200;
  transition: transform 0.35s ease;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ----- WhatsApp float butonu ----- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ----- Date min for form ----- */
input[type="date"] {
  min-height: 48px;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 0.75rem 0; }
  .hero { padding: 5rem 0 3.5rem; min-height: 90vh; }
  .hero-title { font-size: clamp(2.1rem, 5vw, 2.6rem); }
  .hero-desc { font-size: 1rem; padding: 0 0.5rem; }
  .section-title { font-size: 1.6rem; }

  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid var(--color-sand);
    gap: 0.75rem;
  }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; max-width: 100%; }
  .packages-intro,
  .booking-intro { font-size: 0.95rem; }

  .hotel-table-wrap { margin: 0 -1.5rem; border-radius: 0; }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 4.5rem 0 3rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .hero-cta { gap: 0.75rem; }
  .btn { width: 100%; justify-content: center; }

  .about,
  .packages,
  .booking { padding: 3rem 0; }

  .hotel-table-section { padding: 3rem 0; }
  .hotel-table-wrap { margin: 0 -1rem; }
  .hotel-table th,
  .hotel-table tbody td {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  .contact { padding: 3rem 0 3.5rem; }
  .contact-block { padding: 1rem 0.5rem; }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }
}
