/* Mutlu Patiler Kedi Oteli — shared stylesheet */

:root {
  --color-bg: #FFF9F2;
  --color-bg-alt: #FBEFE0;
  --color-surface: #FFFFFF;
  --color-primary: #E17A47;
  --color-primary-dark: #C25F32;
  --color-secondary: #4A7C6F;
  --color-text: #3A2E28;
  --color-text-muted: #6B5D54;
  --color-border: #EEDFCB;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(58, 46, 40, 0.08);
  --max-width: 1120px;
  --font-heading: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-header p { font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-primary-dark);
  background: rgba(225, 122, 71, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--color-text);
}

.brand svg { width: 38px; height: 38px; flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--color-primary-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-bottom: 1px solid var(--color-border); }
  .nav-cta { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-secondary:hover { background: rgba(225,122,71,0.08); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1DA851; }

.button-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero */
.hero {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 span { color: var(--color-primary); }
.hero-visual {
  background: linear-gradient(135deg, var(--color-primary) 0%, #F2A46B 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.hero-visual svg { width: 55%; height: 55%; opacity: 0.95; }

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-text);
}
.trust-item svg { width: 22px; height: 22px; color: var(--color-secondary); flex-shrink: 0; }

/* Cards */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(225,122,71,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-badge svg { width: 28px; height: 28px; color: var(--color-primary-dark); }

/* Placeholder image block (used until real photos are added) */
.placeholder-photo {
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, #F3DCC2, #F3DCC2 10px, #F8E9D6 10px, #F8E9D6 20px);
  border: 2px dashed var(--color-border);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 16px;
}
.placeholder-photo svg { width: 40px; height: 40px; opacity: 0.6; }
.placeholder-photo span { font-size: 0.85rem; font-weight: 700; }

/* Real photo box (same footprint as placeholder-photo) */
.photo-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero visual photo */
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Service / info card topped with a photo */
.card.card-photo { padding: 0; overflow: hidden; }
.card.card-photo .card-photo-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.card.card-photo .card-body { padding: 28px 28px 32px; }

/* Gallery grid */
.gallery-item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Video block */
.video-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 380px;
  margin: 0 auto;
}
.video-box video { width: 100%; display: block; background: #000; aspect-ratio: 9/16; }

/* Pricing note */
.notice {
  background: rgba(74,124,111,0.1);
  border: 1px solid rgba(74,124,111,0.25);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 28px 0;
}
table.price-table th, table.price-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
table.price-table th { background: var(--color-bg-alt); font-family: var(--font-heading); }
table.price-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-info-list svg { width: 24px; height: 24px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-list a { text-decoration: none; color: var(--color-text); }
.contact-info-list a:hover { color: var(--color-primary-dark); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

.social-row { display: flex; gap: 14px; margin-top: 20px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--color-primary); transform: translateY(-2px); }
.social-row a:hover svg { color: #fff; }
.social-row svg { width: 20px; height: 20px; color: var(--color-primary-dark); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-secondary), #3A6459);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .button-row { justify-content: center; }
.cta-band .btn-secondary { border-color: #fff; color: #fff; }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.12); }

/* Footer */
.site-footer {
  background: #2E2420;
  color: #E9DDD1;
  padding: 56px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer a { color: #C9B9AB; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #A6968A;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-top: 20px;
}
.breadcrumb a { text-decoration: none; color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary-dark); }

/* Page hero (inner pages) */
.page-hero {
  padding: 40px 0 20px;
  text-align: center;
}
.page-hero p { max-width: 640px; margin: 0 auto; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
