/* ══════════════════════════════════════════════════════
   OG MEDYA | ANADOLU HERITAGE + MODERN — SHARED STYLES
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --turquoise: #1a8a7d;
  --turquoise-light: #2bb5a5;
  --turquoise-dark: #0e6960;
  --copper: #c67d3e;
  --copper-light: #daa06d;
  --copper-glow: #e8a84c;
  --earth: #3d2b1f;
  --earth-light: #5c4033;
  --sand: #f5efe6;
  --sand-dark: #e8dfd2;
  --cream: #faf8f4;
  --warm-white: #fefcf9;
  --charcoal: #2a2420;
  --text-primary: #2a2420;
  --text-secondary: #6b5e52;
  --text-light: #9a8d80;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
}

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

/* ══════════════ CURSOR ══════════════ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
}
body:hover .cursor-dot { opacity: 0.6; }

/* ══════════════ NAVIGATION ══════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(42, 36, 32, 0.06);
  padding: 0.8rem 3rem;
}

nav.nav-solid {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(42, 36, 32, 0.06);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--charcoal);
}

.nav-logo-icon { width: 44px; height: 44px; }
.nav-logo-icon svg { width: 100%; height: 100%; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--turquoise); }

.nav-links {
  display: flex; gap: 2.2rem;
  list-style: none; align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--copper);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--turquoise) !important;
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--turquoise-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(26, 138, 125, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--turquoise); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 2rem; cursor: pointer;
  color: var(--charcoal);
}

/* ══════════════ BUTTONS ══════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--turquoise);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 138, 125, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--sand-dark);
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-1px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--charcoal);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: white;
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s; cursor: pointer;
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ══════════════ SECTION COMMONS ══════════════ */
section { padding: 7rem 3rem; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 30px; height: 1.5px;
  background: var(--copper);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  max-width: 600px;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 3.5rem;
}

/* ══════════════ PAGE HERO (sub-pages) ══════════════ */
.page-hero {
  padding: 10rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background:
    repeating-conic-gradient(var(--turquoise) 0deg 30deg, transparent 30deg 60deg);
  opacity: 0.02;
  border-radius: 50%;
  animation: rotatePattern 120s linear infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--copper-light) 0%, transparent 70%);
  opacity: 0.06;
}

@keyframes rotatePattern { to { transform: rotate(360deg); } }

.page-hero .section-label { position: relative; z-index: 1; }
.page-hero .section-title {
  position: relative; z-index: 1;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  max-width: 700px;
}
.page-hero .section-desc {
  position: relative; z-index: 1;
  max-width: 580px;
  margin-bottom: 0;
}

.breadcrumb {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--turquoise); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }

/* ══════════════ CTA SECTION ══════════════ */
.cta-section {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--cream);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--turquoise) 0%, transparent 60%);
  opacity: 0.1;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 60%);
  opacity: 0.08;
}

.cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center;
  position: relative; z-index: 1;
}

/* ══════════════ FOOTER ══════════════ */
footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 3rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--turquoise), var(--copper-glow), var(--turquoise));
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper-light);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: white; }

.footer-newsletter input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.8rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter button {
  width: 100%;
  padding: 0.7rem;
  background: var(--turquoise);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-newsletter button:hover { background: var(--turquoise-dark); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-socials { display: flex; gap: 0.8rem; }

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background: rgba(26, 138, 125, 0.1);
}

/* ══════════════ SCROLL ANIMATIONS ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .cta-inner { padding: 3rem 2rem; }
  .cta-buttons { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
