/* Dedeman Village Sapanca — Premium SEO Site Framework */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #616161;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.theme-evi {
  --primary: #183047;
  --primary-light: #234a6b;
  --accent: #4aa3cc;
  --accent-hover: #3a8eb8;
  --bg-soft: #f4f6f8;
  --hero-gradient: linear-gradient(to top, rgba(24,48,71,.45) 0%, transparent 65%);
}
.theme-ucuz {
  --primary: #183047;
  --primary-light: #234a6b;
  --accent: #4aa3cc;
  --accent-hover: #3a8eb8;
  --bg-soft: #f4f6f8;
  --hero-gradient: linear-gradient(to top, rgba(24,48,71,.45) 0%, transparent 65%);
}
.theme-kiralik {
  --primary: #183047;
  --primary-light: #234a6b;
  --accent: #4aa3cc;
  --accent-hover: #3a8eb8;
  --bg-soft: #f4f6f8;
  --hero-gradient: linear-gradient(to top, rgba(24,48,71,.45) 0%, transparent 65%);
}
.theme-konaklama {
  --primary: #183047;
  --primary-light: #234a6b;
  --accent: #4aa3cc;
  --accent-hover: #3a8eb8;
  --bg-soft: #f4f6f8;
  --hero-gradient: linear-gradient(to top, rgba(24,48,71,.45) 0%, transparent 65%);
}

.container { width: min(var(--container), 92vw); margin-inline: auto; }

/* Top bar */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  padding: .55rem 0;
}
.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { opacity: .95; transition: opacity var(--transition); }
.top-bar a:hover { opacity: 1; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
}

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .55rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-soft);
  color: var(--primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  color: #fff;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.hero-lead {
  font-size: 1.12rem;
  opacity: .94;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); }

.hero-stats {
  position: absolute;
  right: 4vw;
  bottom: 3rem;
  z-index: 2;
  display: grid;
  gap: .75rem;
}
.stat-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.35rem;
  color: #fff;
  min-width: 140px;
}
.stat-card strong { display: block; font-size: 1.5rem; font-family: var(--font-display); }
.stat-card span { font-size: .78rem; opacity: .85; }

/* Booking strip */
.booking-strip {
  background: #fff;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 2rem;
}
.booking-strip h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .35rem;
}
.booking-strip p { color: #64748b; font-size: .92rem; margin-bottom: 1.25rem; }
.booking-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Sections */
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-intro {
  color: #64748b;
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.bg-soft { background: var(--bg-soft); }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(15,23,42,.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.feature-card p { color: #64748b; font-size: .92rem; }

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.room-card:hover { transform: translateY(-6px); }
.room-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.room-body { padding: 1.5rem; }
.room-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: .35rem;
}
.room-meta { font-size: .85rem; color: #64748b; margin-bottom: .75rem; }
.room-body p { font-size: .9rem; color: #475569; margin-bottom: 1rem; }

/* SEO content */
.seo-content { max-width: 820px; }
.seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
}
.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.75rem 0 .75rem;
}
.seo-content p, .seo-content li {
  color: #475569;
  margin-bottom: 1rem;
  font-size: .98rem;
}
.seo-content ul { padding-left: 1.25rem; margin-bottom: 1.5rem; }
.seo-content ul li { margin-bottom: .45rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: .75rem;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

/* FAQ */
.faq-list { max-width: 780px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.04);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: #64748b;
  font-size: .95rem;
}
.faq-item.open .faq-a { max-height: 400px; }

/* CTA band */
.cta-band {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  margin: 0 4vw;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}
.cta-band p { opacity: .9; margin-bottom: 1.75rem; max-width: 520px; margin-inline: auto; }

/* Footer */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.82);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.65; opacity: .8; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .88rem;
  margin-bottom: .55rem;
  opacity: .8;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  opacity: .65;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  padding: .75rem 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  gap: .5rem;
}
.mobile-cta a { flex: 1; text-align: center; padding: .85rem; border-radius: 12px; font-weight: 700; font-size: .88rem; }
.mobile-cta .mc-wa { background: #25d366; color: #fff; }
.mobile-cta .mc-call { background: var(--primary); color: #fff; }

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 0;
  font-size: .85rem;
  color: #64748b;
}
.breadcrumb a:hover { color: var(--primary); }

/* Page hero (inner) */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 3.5rem 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
.page-hero p { opacity: .88; max-width: 560px; }

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  padding: 2rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 600;
  color: #64748b;
}
.trust-item span:first-child { font-size: 1.25rem; }

/* Reviews / Testimonials */
.reviews-section { padding: 5rem 0; }
.reviews-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.reviews-score span { font-size: 1rem; color: #64748b; font-family: var(--font-body); font-weight: 600; }
.reviews-stars-lg { color: #f59e0b; font-size: 1.15rem; letter-spacing: .12em; }
.reviews-count { font-size: .88rem; color: #64748b; font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .08em; }
.review-text {
  color: #475569;
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--accent); font-size: 1.5rem; font-style: normal; line-height: 0; margin-right: .15rem; }
.review-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(15,23,42,.06);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--primary);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; color: var(--primary); }
.review-author span { font-size: .78rem; color: #94a3b8; }
.review-tag {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--bg-soft);
  padding: .3rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.reviews-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: .85rem;
  color: #64748b;
  font-weight: 600;
}
.reviews-google svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide, .gallery-grid .tall { grid-column: span 1; grid-row: span 1; }
}
/* SEO keyword cloud */
.keyword-section { padding: 3rem 0; border-top: 1px solid rgba(15,23,42,.06); }
.keyword-section h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.keyword-grid a {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  padding: .45rem .95rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}
.keyword-grid a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.landing-cta-box {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
}
.related-links a {
  background: #fff;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(15,23,42,.06);
  transition: all var(--transition);
}
.related-links a:hover { border-color: var(--accent); box-shadow: var(--shadow); }

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero { min-height: 75vh; }
  .booking-strip { margin-top: -2rem; padding: 1.25rem; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { margin: 0; border-radius: 0; }
}
