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

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --teal: #0d6e6e;
  --teal-light: #12a3a3;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f8f4ef;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: rgba(201,168,76,0.25);
}

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

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

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-brand span { color: var(--gold); font-style: italic; }

.nav-center { display: flex; gap: 0; }

.nav-dropdown { position: relative; }

.nav-dropdown > a, .nav-links > li > a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0 1.1rem;
  height: 72px;
  display: flex; align-items: center;
  white-space: nowrap;
}

.nav-dropdown > a:hover, .nav-links > li > a:hover { color: var(--gold); }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: 72px; left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  z-index: 200;
  flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
  font-weight: 500;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); padding-left: 1.8rem; }

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.4rem !important;
  height: auto !important;
  margin-left: 1rem;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ---- PAGE HERO (for inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 140px 8% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,110,110,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.page-tag::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1rem;
}
.page-desc {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.8;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  padding: 0.75rem 8%;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; color: var(--text-light);
}
.breadcrumb a { color: var(--teal); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-light); }

/* ---- MAIN CONTENT ---- */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 8%;
}

/* ---- SECTION ELEMENTS ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 2rem; height: 1px; background: var(--teal); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.07);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,22,40,0.1); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.7rem; line-height: 1.25;
}
.card-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ---- LIST STYLE ---- */
.fancy-list { list-style: none; margin-top: 2rem; }
.fancy-list li {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(10,22,40,0.06);
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.7;
}
.fancy-list li::before {
  content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.fancy-list li strong { color: var(--navy); font-weight: 600; }

/* ---- TIMELINE ---- */
.timeline { margin-top: 3rem; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 180px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.35;
}
.timeline-item {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 3rem; margin-bottom: 3rem; position: relative;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--gold); text-align: right;
  padding-top: 0.2rem; letter-spacing: 0.03em;
}
.timeline-dot {
  position: absolute; left: 180px; top: 0.5rem;
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  transform: translateX(-4.5px); box-shadow: 0 0 12px rgba(201,168,76,0.5);
}
.timeline-content { padding-left: 2rem; }
.timeline-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.3rem;
}
.timeline-inst {
  font-size: 0.78rem; color: var(--teal); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem;
}
.timeline-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ---- TABLE ---- */
.fancy-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.fancy-table th {
  background: var(--navy); color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 1.2rem; text-align: left; font-weight: 500;
}
.fancy-table td {
  padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(10,22,40,0.07); line-height: 1.6;
}
.fancy-table tr:hover td { background: rgba(201,168,76,0.04); }
.fancy-table td strong { color: var(--navy); font-weight: 600; }

/* ---- FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--cream);
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 0.3rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.form-card { background: var(--white); border: 1px solid rgba(10,22,40,0.07); padding: 2.5rem; border-top: 3px solid var(--gold); }
.form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.3rem; }
.form-card-sub { font-size: 0.82rem; color: var(--text-light); font-style: italic; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--cream);
  border: 1px solid rgba(10,22,40,0.12); color: var(--text-dark);
  padding: 0.85rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.9rem;
  border-radius: 2px; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; padding: 1rem; font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  margin-top: 0.5rem; transition: all 0.3s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }

/* ---- DISCLAIMER ---- */
.disclaimer {
  background: var(--navy-mid);
  padding: 2rem 8%;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.7; font-style: italic; max-width: 900px; }

/* ---- FOOTER ---- */
footer {
  background: #060e1a;
  padding: 2rem 8%;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.4); }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* ---- FADE ANIMATION ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.3s; font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 0.9rem 2.2rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25); text-decoration: none;
  display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==============================
   HAMBURGER & MOBİL MENÜ
   ============================== */

/* Hamburger — varsayılan gizli */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 101;
  transition: border-color 0.3s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* Overlay — varsayılan tamamen gizli */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 149;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.active {
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* Mobil menü paneli — sağdan kayar */
.mobile-panel {
  position: fixed; top: 0; right: 0;
  width: min(300px, 82vw);
  height: 100%; height: 100dvh;
  background: var(--navy);
  z-index: 150;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  border-left: 1px solid rgba(201,168,76,0.15);
  box-shadow: -6px 0 30px rgba(0,0,0,0.4);
}
.mobile-panel.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Panel header */
.mp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  background: rgba(0,0,0,0.15);
}
.mp-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: rgba(255,255,255,0.65); font-weight: 600;
}
.mp-brand em { color: var(--gold); font-style: italic; }
.mp-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); width: 32px; height: 32px;
  cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.mp-close:hover { background: rgba(201,168,76,0.12); color: var(--gold); border-color: var(--gold); }

/* Panel linkleri */
.mp-body { padding: 1rem 0 2rem; }
.mp-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  padding: 0.8rem 1.4rem 0.3rem;
}
.mp-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1.4rem;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.85rem; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.mp-link:hover { background: rgba(201,168,76,0.07); color: var(--gold); padding-left: 1.8rem; }
.mp-link-icon { font-size: 0.95rem; flex-shrink: 0; opacity: 0.7; }
.mp-cta {
  display: block; margin: 1.5rem 1.4rem 0;
  padding: 0.85rem 1.4rem;
  background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; transition: background 0.3s;
}
.mp-cta:hover { background: var(--gold-light); }

/* ===== 901px+: mobil elemanları tamamen yok et ===== */
@media (min-width: 901px) {
  .hamburger,
  .mobile-overlay,
  .mobile-panel {
    display: none !important;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 110px; }
  .timeline-item { grid-template-columns: 110px 1fr; }
  .nav-center { display: none; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .page-content { padding: 3rem 5%; }
  .page-hero { padding: 120px 5% 60px; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
}
