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

:root {
  --navy: #0c1f3f;
  --navy-mid: #1a3560;
  --gold: #b8902a;
  --gold-light: #d4aa50;
  --gold-pale: #f5edd8;
  --white: #ffffff;
  --cream: #faf8f5;
  --gray-100: #f4f4f2;
  --gray-200: #e8e8e4;
  --gray-500: #9a9a95;
  --gray-700: #555550;
  --text: #1a1a18;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(12,31,63,0.07);
  --shadow-md: 0 8px 32px rgba(12,31,63,0.10);
  --shadow-lg: 0 20px 60px rgba(12,31,63,0.13);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
  padding: 0.7rem 5%;
}

nav.scrolled .nav-logo-text { color: var(--navy); }
nav.scrolled .nav-links a { color: var(--gray-700); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
nav.scrolled .hamburger span { background: var(--navy); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

nav.scrolled .nav-logo-img { border-color: var(--gold-light); }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  transition: var(--transition);
}

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

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}

nav.scrolled .nav-cta { color: var(--navy) !important; }

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(184,144,42,0.35) !important;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,55,0.72) 0%,
    rgba(10,25,55,0.55) 50%,
    rgba(10,25,55,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-emblem {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 0 6px rgba(184,144,42,0.2), var(--shadow-lg);
  margin-bottom: 1.8rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,144,42,0.18);
  border: 1px solid rgba(184,144,42,0.45);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero-title .accent {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  font-weight: 300;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184,144,42,0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  width: 90%;
  max-width: 500px;
  justify-content: center;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

/* ── SHARED ── */
section { padding: 7rem 5%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

/* ── HAKKIMIZDA ── */
#hakkimizda {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.about-photo-frame {
  position: relative;
}

.about-main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-logo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.feature-text p {
  color: var(--gray-700);
  font-size: 0.87rem;
  line-height: 1.55;
}

/* ── ALINTI ── */
#quote-section {
  background: var(--navy);
  padding: 6rem 5%;
  text-align: center;
}

.quote-inner {
  max-width: 740px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: rgba(184,144,42,0.25);
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

cite {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  font-style: normal;
}

/* ── 3 SÜTUN ── */
#sutunlar {
  background: var(--white);
}

.pillars-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pillar-card.featured {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 2px var(--gold-light), var(--shadow-md);
}

.pillar-photo {
  height: 220px;
  overflow: hidden;
}

.pillar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-photo img {
  transform: scale(1.06);
}

.pillar-body {
  padding: 1.8rem;
}

.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pillar-slogan {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pillar-list li {
  color: var(--gray-700);
  font-size: 0.86rem;
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}

.pillar-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── KOMİSYONLAR ── */
#komisyonlar {
  background: var(--cream);
}

.komisyonlar-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.komisyonlar-header .section-desc {
  margin: 0 auto;
}

.commissions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.commission-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.commission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.commission-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 180px;
  overflow: hidden;
  gap: 2px;
}

.comm-photo-main,
.comm-photo-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.commission-card:hover .comm-photo-main,
.commission-card:hover .comm-photo-secondary {
  transform: scale(1.06);
}

.commission-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.commission-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.commission-icon-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
  flex-shrink: 0;
}

.commission-icon-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.commission-body p {
  color: var(--gray-700);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.commission-quote {
  border-left: 2.5px solid var(--gold-light);
  padding-left: 0.8rem;
  color: var(--gold);
  font-style: italic;
  font-size: 0.79rem;
  line-height: 1.5;
}

.commission-quote span {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--navy);
}

/* ── ŞEHİR ── */
#sehir {
  background: var(--white);
  padding: 7rem 5%;
}

.city-photo-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.city-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.city-photo:hover { transform: scale(1.03); }

.city-text-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.city-text-row em {
  color: var(--gold);
  font-style: normal;
}

.city-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.city-badge {
  background: var(--cream);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: default;
}

.city-badge:hover {
  border-color: var(--gold-light);
  color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ── İLETİŞİM ── */
#iletisim {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info .section-title { margin-top: 0.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.35);
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-insta:hover {
  color: #e1306c;
}

.contact-emblem {
  margin-top: 2rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}

.contact-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.form-group { margin-bottom: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,144,42,0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,144,42,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,144,42,0.4);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-tagline {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-frame { max-width: 600px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; }
  .commissions-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .city-photo-row { height: 300px; }
  .city-text-row { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem 5%;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-links.open a { color: var(--navy); }
  .nav-links.open a:hover { color: var(--gold); }
  .hamburger { display: flex; }
  nav.scrolled .hamburger span { background: var(--navy); }

  .hero-stats { gap: 1.5rem; }
  .commissions-grid { grid-template-columns: 1fr; }
  .city-photo-row { grid-template-columns: 1fr; height: 220px; }
  .city-photo:last-child { display: none; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 5rem 5%; }
  .hero-emblem { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .hero-stats { display: none; }
}
