/* ===== Hotel Ejder — stylesheet ===== */

:root {
  --gold: #c9a15a;
  --gold-light: #e4c98a;
  --gold-dark: #a17f3e;
  --navy: #10151f;
  --navy-2: #1a2130;
  --cream: #faf6ef;
  --cream-2: #f1ead9;
  --ink: #241d14;
  --ink-soft: #55503f;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(16, 21, 31, 0.35);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader img { width: 140px; filter: brightness(0) invert(1); opacity: .9; animation: pulse 1.4s ease-in-out infinite; }
#preloader.hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100%{opacity:.5; transform:scale(.96);} 50%{opacity:1; transform:scale(1);} }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-sm { padding: 11px 24px; font-size: .85rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1206;
  box-shadow: 0 10px 25px -8px rgba(201,161,90,.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(201,161,90,.7); }
.btn-outline {
  border-color: rgba(201,161,90,.6);
  color: var(--navy);
}
.btn-outline:hover { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(16,21,31,.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 64px; transition: var(--transition); }
.site-header.scrolled .logo img { height: 52px; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  color: #fff; font-size: .92rem; font-weight: 400; letter-spacing: .02em;
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  color: #fff; font-size: .88rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.25); padding: 9px 18px; border-radius: 100px;
  transition: var(--transition);
}
.phone-pill svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.phone-pill:hover { border-color: var(--gold); background: rgba(201,161,90,.1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; position: relative; z-index: 1100; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: var(--transition); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.4s ease;
  transform: scale(1.05); animation: heroZoom 12s ease-out infinite alternate;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide--1 { background-image: url('canakkale-eceabat-otelleri-slider.webp'); }
.hero-slide--2 { background-image: url('slider2.webp'); }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(16,21,31,.78) 0%, rgba(16,21,31,.64) 45%, rgba(16,21,31,.88) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,161,90,.05) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(-45deg, rgba(201,161,90,.05) 0 2px, transparent 2px 40px);
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 24px; }
.hero-kicker {
  color: var(--gold-light); letter-spacing: .35em; text-transform: uppercase;
  font-size: .78rem; margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: .08em; margin-bottom: 20px;
}
.hero-tagline {
  display: block; margin-top: 14px;
  font-size: clamp(.9rem, 2.2vw, 1.15rem); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px;
  margin: 0 auto 38px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold-light); border-radius: 50%;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0%{opacity:1; top:8px;} 80%{opacity:0; top:24px;} 100%{opacity:0; top:8px;} }

/* ---- Reservation bar ---- */
.reservation { padding: 0; position: relative; z-index: 5; margin-top: -55px; }
.reservation-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 22px;
  align-items: end;
}
.res-field { display: flex; flex-direction: column; gap: 8px; }
.res-field label {
  font-size: .74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gold-dark);
}
.res-field input, .res-field select {
  width: 100%; padding: 13px 14px; border-radius: 10px;
  border: 1px solid rgba(36,29,20,.15); background: var(--cream);
  font-family: inherit; font-size: 16px; color: var(--ink);
  transition: var(--transition); cursor: pointer;
}
.res-field input:focus, .res-field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,90,.15);
}
.res-submit { white-space: nowrap; height: 48px; }

/* Custom select */
.custom-select { position: relative; }
.cs-trigger {
  width: 100%; text-align: left; padding: 13px 40px 13px 14px; border-radius: 10px;
  border: 1px solid rgba(36,29,20,.15); background: var(--cream);
  font-family: inherit; font-size: 16px; color: var(--ink);
  cursor: pointer; transition: var(--transition); position: relative;
}
.cs-trigger::after {
  content: ''; position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px; border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.custom-select.open .cs-trigger { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,90,.15); }
.custom-select.open .cs-trigger::after { transform: translateY(-30%) rotate(-135deg); }
/* contact form room select: white bg + placeholder + error */
.contact-form .cs-trigger { background: #fff; padding: 15px 40px 15px 18px; }
.contact-form .custom-select[data-value=""] .cs-trigger { color: #8a8578; }
.contact-form .custom-select.cs-error .cs-trigger { border-color: #e0483d; box-shadow: 0 0 0 3px rgba(224,72,61,.14); }
.cs-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: #fff; border: 1px solid rgba(36,29,20,.12); border-radius: 10px;
  box-shadow: 0 16px 40px -12px rgba(16,21,31,.3);
  padding: 6px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  max-height: 260px; overflow-y: auto;
}
.custom-select.open .cs-list { opacity: 1; visibility: visible; transform: translateY(0); }
.cs-option {
  padding: 12px 14px; border-radius: 8px; font-size: 15px; color: var(--ink);
  cursor: pointer; transition: background .15s ease;
}
.cs-option:hover { background: var(--cream-2); }
.cs-option.is-selected { background: var(--gold); color: #1a1206; font-weight: 500; }

/* ---- Section shared ---- */
section { padding: 120px 0; }
.section-kicker {
  color: var(--gold-dark); text-transform: uppercase; letter-spacing: .3em;
  font-size: .78rem; font-weight: 600; margin-bottom: 14px;
}
.section-kicker.center { text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-title.center { text-align: center; }
.section-desc { color: var(--ink-soft); max-width: 560px; }
.section-desc.center { text-align: center; margin: 0 auto 60px; }

/* ---- About ---- */
.about-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center;
}
.about-frame {
  background: linear-gradient(145deg, var(--cream-2), #fff);
  border: 1px solid rgba(201,161,90,.3);
  border-radius: var(--radius);
  padding: 70px 40px;
  box-shadow: var(--shadow);
}
.about-frame img { max-width: 220px; margin: 0 auto; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 34px; }
.about-stats strong { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.7rem; color: var(--gold-dark); }
.about-stats span { font-size: .82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }

/* ---- Rooms ---- */
.rooms { background: var(--cream-2); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); }
.room-media {
  height: 220px; position: relative; display: block; overflow: hidden;
}
.room-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.room-card:hover .room-media img { transform: scale(1.05); }
.room-media--1 { background: linear-gradient(150deg,#1c2436,#3a4a63 60%,#c9a15a); }
.room-media--2 { background: linear-gradient(150deg,#233047,#4c5f7d 60%,#e4c98a); }
.room-media--3 { background: linear-gradient(150deg,#151a24,#2c3648 60%,#a17f3e); }
.room-photo-note {
  font-size: .72rem; color: rgba(255,255,255,.75);
  border: 1px dashed rgba(255,255,255,.4); padding: 5px 12px; border-radius: 100px;
}
.room-body { padding: 30px; }
.room-body h3 { font-size: 1.4rem; margin-bottom: 4px; }
.room-tag { color: var(--gold-dark); font-size: .84rem; font-weight: 500; margin-bottom: 14px; }
.room-body > p:not(.room-tag) { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.room-features { margin-bottom: 24px; }
.room-features li {
  font-size: .88rem; color: var(--ink); padding-left: 22px; position: relative; margin-bottom: 8px;
}
.room-features li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
}

/* ---- Gallery ---- */
.gallery-section { background: var(--cream-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-cell {
  padding: 0; border: none; background: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2;
  box-shadow: var(--shadow); position: relative;
}
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,21,31,.25));
  opacity: 0; transition: var(--transition);
}
.gallery-cell:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(16,21,31,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff;
  cursor: pointer; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; line-height: 1;
  transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(201,161,90,.4); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---- Amenities ---- */
.amenity-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.amenity-item {
  text-align: center; background: #fff; border-radius: var(--radius);
  padding: 40px 22px; border: 1px solid rgba(201,161,90,.18);
  transition: var(--transition);
}
.amenity-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-icon {
  width: 62px; height: 62px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.amenity-icon svg { width: 28px; height: 28px; }
.amenity-icon img { width: 44px; height: 44px; object-fit: contain; }
.amenity-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.amenity-item p { color: var(--ink-soft); font-size: .86rem; }

/* ---- Location ---- */
.location { background: var(--cream-2); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.location-text p { color: var(--ink-soft); margin: 18px 0 30px; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid rgba(201,161,90,.18);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: inherit; font-size: 1.02rem; font-weight: 500;
  color: var(--navy);
}
.faq-icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold-dark);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: var(--transition);
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-a p { color: var(--ink-soft); font-size: .95rem; padding-bottom: 22px; margin: 0; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 30px; }
.contact-list { margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--cream-2); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 4px; }
.contact-list a, .contact-list li > div span { display: block; font-size: .95rem; }
.contact-list a { color: var(--navy); }
.contact-list a:hover { color: var(--gold-dark); }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: #25D366; color: #fff;
}
.social-row img { width: 22px; height: 22px; filter: brightness(0) invert(1); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px 18px; border-radius: 10px;
  border: 1px solid rgba(36,29,20,.15); background: #fff;
  font-family: inherit; font-size: 16px; color: var(--ink);
  transition: var(--transition); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,90,.15);
}
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: .85rem; color: var(--gold-dark); min-height: 1.2em; }

/* ---- Landing page content ---- */
.lp-content { padding: 90px 0; }
.lp-content .container { max-width: 900px; }
.lp-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); text-align: center; margin-bottom: 18px; }
.lp-lead { text-align: center; color: var(--ink-soft); max-width: 720px; margin: 0 auto 44px; font-size: 1.05rem; line-height: 1.8; }
.lp-content h3 { font-size: 1.25rem; margin: 34px 0 12px; }
.lp-content p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.8; }
.lp-content a { color: var(--gold-dark); text-decoration: underline; }
.lp-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; margin: 26px 0 8px; }
.lp-benefits li { position: relative; padding-left: 26px; color: var(--ink); }
.lp-benefits li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
}
.lp-cta-band { background: var(--navy); color: #fff; text-align: center; padding: 66px 0; }
.lp-cta-band h2 { color: #fff; margin-bottom: 14px; }
.lp-cta-band p { color: rgba(255,255,255,.75); max-width: 640px; margin: 0 auto 28px; }
.lp-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Keyword tags (SEO) ---- */
.keyword-tags {
  background: var(--navy-2); padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.kw-label {
  display: block; text-align: center; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: .2em; font-size: .72rem;
  font-weight: 600; margin-bottom: 20px;
}
.kw-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.kw-list li {
  color: rgba(255,255,255,.72); font-size: .82rem; padding: 8px 16px;
  border: 1px solid rgba(201,161,90,.3); border-radius: 100px;
  transition: var(--transition);
}
.kw-list li:hover { border-color: var(--gold); color: #fff; background: rgba(201,161,90,.08); }
.kw-list li a { color: inherit; text-decoration: none; display: block; }

/* ---- Blog ---- */
.room-hero--blog { background: linear-gradient(160deg,var(--navy) 0%,#1c2436 55%,#2a3855 100%); }
.blog-section { padding: 90px 0; }
#blog.blog-section { background: var(--cream-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 840px; margin: 0 auto; }
.blog-more { text-align: center; margin-top: 40px; }
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-media { height: 200px; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  color: var(--gold-dark); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.2rem; line-height: 1.4; margin-bottom: 10px; }
.blog-card-body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; flex: 1; }
.blog-meta { font-size: .8rem; color: var(--ink-soft); margin-bottom: 16px; }
.blog-card .read-more {
  color: var(--gold-dark); font-weight: 600; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
}
.blog-card .read-more:hover { gap: 10px; }

/* Article page */
.article { padding: 70px 0 90px; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-cover {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  margin-bottom: 40px; aspect-ratio: 16 / 8; background: var(--cream-2);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body h2 { font-size: 1.5rem; margin: 38px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-body p { color: var(--ink-soft); margin-bottom: 18px; line-height: 1.8; }
.article-body ul { margin: 0 0 18px; padding-left: 4px; }
.article-body li {
  position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--ink-soft);
}
.article-body li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
}
.article-body a { color: var(--gold-dark); text-decoration: underline; }
.article-cta {
  background: var(--cream-2); border-left: 3px solid var(--gold);
  border-radius: 10px; padding: 24px 28px; margin: 34px 0;
}
.article-cta p { margin-bottom: 14px; color: var(--ink); }
.article-back { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); font-weight: 500; margin-top: 10px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 80px; }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 18px;
}
.footer-links a, .footer-contact p { display: block; font-size: .88rem; margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 24px 0; font-size: .8rem; }
.footer-credit { margin-top: 12px; font-size: 1rem; color: rgba(255,255,255,.65); }
.footer-credit a {
  color: var(--gold-light); font-weight: 700; font-size: 1.35rem;
  letter-spacing: .02em; transition: var(--transition);
}
.footer-credit a:hover { color: var(--gold); text-decoration: underline; }

/* ---- Floating buttons ---- */
.whatsapp-widget {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
}
.whatsapp-label {
  background: #fff; color: var(--ink);
  padding: 12px 20px; border-radius: 100px;
  font-size: .85rem; font-weight: 500; white-space: nowrap;
  box-shadow: 0 10px 25px -6px rgba(0,0,0,.3); transition: var(--transition);
}
.whatsapp-label:hover { transform: translateY(-2px); }
.whatsapp-float {
  position: relative; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25); transition: var(--transition);
  border: none; cursor: pointer;
}
.whatsapp-float img { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-dot {
  position: absolute; top: -2px; right: -2px;
  width: 13px; height: 13px; border-radius: 50%;
  background: #ff3b30; border: 2px solid #fff;
}
.phone-float {
  position: fixed; right: 26px; bottom: 90px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25); transition: var(--transition);
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1206;
}
.phone-float svg { width: 24px; height: 24px; fill: currentColor; }
.phone-float:hover { transform: scale(1.08); }

/* ---- Room detail page ---- */
.room-hero {
  min-height: 46vh; display: flex; align-items: flex-end;
  padding: 110px 0 40px; position: relative; overflow: hidden;
}
.room-hero--1 { background: linear-gradient(150deg,#1c2436,#3a4a63 60%,#c9a15a); }
.room-hero--2 { background: linear-gradient(150deg,#233047,#4c5f7d 60%,#e4c98a); }
.room-hero--3 { background: linear-gradient(150deg,#151a24,#2c3648 60%,#a17f3e); }
.room-hero--about { background: linear-gradient(160deg,var(--navy) 0%,#1c2436 60%,#233047 100%); }
.room-hero .container { position: relative; z-index: 2; }
.room-hero .breadcrumb { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 12px; }
.room-hero .breadcrumb a { color: var(--gold-light); }
.room-hero .breadcrumb a:hover { text-decoration: underline; }
.room-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.room-hero .room-tag { color: var(--gold-light); font-size: 1rem; margin-top: 8px; }

.room-detail { padding: 90px 0; }
.room-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.room-detail-main h2 { font-size: 1.6rem; margin: 0 0 18px; }
.room-detail-main p { color: var(--ink-soft); margin-bottom: 18px; }
.room-photo-placeholder {
  height: 320px; border-radius: var(--radius); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .85rem;
}

/* Room gallery */
.room-gallery { margin-bottom: 36px; }
.gallery-main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 16 / 10; background: var(--cream-2);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.gthumb {
  flex: 1 1 90px; max-width: 150px; aspect-ratio: 4 / 3; padding: 0;
  border: 2px solid transparent; border-radius: 10px; overflow: hidden;
  cursor: pointer; background: none; transition: var(--transition);
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gthumb:hover { border-color: rgba(201,161,90,.5); }
.gthumb.is-active { border-color: var(--gold); }
.room-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 24px; }
.room-feature-list li {
  display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--ink);
}
.room-feature-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream-2); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.nearby-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 22px 12px; background: var(--cream); border: 1px solid rgba(201,161,90,.18);
  border-radius: var(--radius); font-size: .88rem; font-weight: 500; color: var(--ink);
  transition: var(--transition);
}
.nearby-item:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.nearby-icon { color: var(--gold-dark); display: flex; align-items: center; justify-content: center; }
.nearby-icon svg { width: 28px; height: 28px; }

.room-booking {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 3px solid var(--gold); padding: 34px 30px; position: sticky; top: 100px;
}
.room-booking h3 { font-size: 1.3rem; margin-bottom: 6px; }
.room-booking p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }
.room-booking .btn { width: 100%; margin-bottom: 12px; }
.room-booking .btn:last-child { margin-bottom: 0; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb959; transform: translateY(-2px); }

/* ---- Fade-in animation ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .reservation-form { grid-template-columns: 1fr 1fr; }
  .res-submit { grid-column: 1 / -1; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-booking { position: static; }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  section { padding: 90px 0; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 80vw);
    background: var(--navy); flex-direction: column; justify-content: center;
    align-items: flex-start; gap: 26px; padding: 40px; z-index: 1001;
    transform: translateX(100%); transition: var(--transition);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .phone-pill { padding: 8px 14px; font-size: .8rem; gap: 6px; }
  .header-actions { gap: 12px; }
  .room-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lp-benefits { grid-template-columns: 1fr; }
  .hero-slide--1 { background-image: url('canakkale-eceabat-oteller-mobil.webp'); }
  .hero-slide--2 { background-image: url('eceabat-kahvalti-slider-mobil.webp'); }
}
@media (max-width: 480px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .whatsapp-label { display: none; }
  .reservation-form { grid-template-columns: 1fr; }
  .reservation { margin-top: -40px; }
  .container { padding: 0 16px; }
  .logo img { height: 48px; }
  .phone-pill { padding: 7px 12px; font-size: .74rem; gap: 5px; }
  .phone-pill svg { width: 13px; height: 13px; }
  .header-actions { gap: 10px; }
}
