/* BODRUM EXPERIENCE — SHARED STYLES v2.0 */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy: #0a1628;
  --deep: #0d1f3c;
  --ocean: #1a3a5c;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--white); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 28px; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; transition: all 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ─── LANG SWITCHER ─── */
.lang-switcher { display: flex; gap: 3px; }
.lang-btn { padding: 5px 10px; font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; border: 1px solid rgba(201,169,110,0.2); background: transparent; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.lang-btn.active, .lang-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HAMBURGER ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 201; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,22,40,0.99); backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column; justify-content: center; align-items: center; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.mobile-cta) {
  display: block; width: 100%; max-width: 300px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 300; font-style: italic;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-light); }
.mobile-cta { margin-top: 36px; padding: 16px 52px; background: var(--gold); color: var(--navy) !important; font-family: var(--font-body) !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.22em; text-transform: uppercase; font-style: normal !important; border-bottom: none !important; text-decoration: none; }
.mobile-lang { display: flex; gap: 4px; margin-top: 28px; }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-block; padding: 18px 44px; background: var(--gold); color: var(--navy); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 18px 44px; border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── SECTION BASE ─── */
.section-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 68px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-body { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-muted); max-width: 520px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { position: relative; padding: 180px 60px 100px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.88) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(46px, 6vw, 90px); font-weight: 300; line-height: 1; margin-bottom: 16px; }
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 14px; font-weight: 300; color: var(--text-muted); max-width: 500px; line-height: 1.8; }

/* ─── FOOTER ─── */
footer { background: #050d1a; padding: 80px 60px 40px; border-top: 1px solid rgba(201,169,110,0.1); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { font-family: var(--font-display); font-size: 28px; font-weight: 300; margin-bottom: 16px; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.25); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-family: var(--font-body); }
.social-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); color: var(--gold); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; font-weight: 300; color: var(--text-muted); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; animation: wa-pulse 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.8); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5);}50%{box-shadow:0 4px 24px rgba(37,211,102,0.6),0 0 0 10px rgba(37,211,102,0.1);} }

/* ─── MISC ─── */
.success-msg { display:none; background:rgba(201,169,110,0.1); border:1px solid var(--gold); padding:20px 24px; text-align:center; font-size:13px; color:var(--gold); margin-top:16px; letter-spacing:0.05em; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);} }
@keyframes shimmer { from{transform:translateX(0);}to{transform:translateX(80px);} }
@keyframes marquee { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 18px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 140px 24px 70px; }
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
