/* ============================================================
   DELOS OTEL – BOZCAADA | PAYLAŞILAN STIL
   Ege Sarısı × Lacivert Lüks Turizm Teması
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ===== RENK PALETİ ===== */
:root {
  --lacivert:     #0d2b45;
  --lacivert-ara: #163d5f;
  --ege:          #1a6b8a;
  --ege-acik:     #4ca9c8;
  --altin:        #c9a96e;
  --altin-acik:   #e8c98a;
  --kum:          #f7f2eb;
  --kum-koyu:     #ede5d8;
  --beyaz:        #ffffff;
  --yazi:         #1a2535;
  --yazi-acik:    #4a5568;
  --border:       rgba(201,169,110,0.25);
  --shadow-sm:    0 2px 12px rgba(13,43,69,0.08);
  --shadow-md:    0 8px 32px rgba(13,43,69,0.14);
  --shadow-lg:    0 20px 60px rgba(13,43,69,0.20);
  --whatsapp:     #25D366;
  --radius:       14px;
  --radius-sm:    8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--kum);
  color: var(--yazi);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--lacivert);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 72px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--ege), var(--altin));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

.logo-text .sub {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--altin);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* NAV LINKS */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--altin);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 28px);
}

.main-nav a.active {
  color: var(--altin);
}

/* CTA BUTTON */
.nav-cta {
  background: var(--altin) !important;
  color: var(--lacivert) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 6px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--altin-acik) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.4) !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-ara) 50%, var(--ege) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--altin);
}

.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--altin); }

/* ALTIN AYRAÇ */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--altin), transparent);
  margin: 16px 0;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ege);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--lacivert);
  line-height: 1.2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--lacivert);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text .name { font-size: 22px; }

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-contact li .icon { color: var(--altin); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  position: relative;
}

.wa-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.wa-float a svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ============================================================
   ORTAK BİLEŞENLER
   ============================================================ */

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--border);
  color: var(--altin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s ease;
  border: none;
}

.btn-primary {
  background: var(--altin);
  color: var(--lacivert);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}

.btn-primary:hover {
  background: var(--altin-acik);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--altin);
  color: var(--altin);
}

.btn-outline:hover {
  background: var(--altin);
  color: var(--lacivert);
}

/* ============================================================
   MOBİL
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--lacivert);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid rgba(201,169,110,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav a {
    font-size: 15px;
    padding: 13px 16px;
    border-radius: 8px;
  }

  .main-nav a:hover { background: rgba(255,255,255,0.06); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section { padding: 60px 0; }

  .wa-float { bottom: 20px; right: 20px; }
  .wa-float a { width: 52px; height: 52px; }
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
