/* ==========================================================================
   EZEL DÜĞÜN SALONU — STYLE.CSS
   Renk paletini ve fontları değiştirmek için :root içindeki değişkenleri
   ve font-family satırlarını güncelleyin.
   ========================================================================== */

:root {
  /* DEĞİŞTİRİLEBİLİR: Renk paleti */
  --primary: #10203f;   /* koyu lacivert */
  --secondary: #c9a24a; /* altın sarısı */
  --accent: #e7cc86;    /* açık altın (hover/vurgu) */
  --dark: #0a1526;      /* en koyu lacivert (footer, section-dark) */
  --light: #f8f5ef;     /* açık gri / fildişi zemin */
  --white: #ffffff;
  --text-muted: #6b7280;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius: 4px;
  --shadow-soft: 0 10px 30px rgba(10, 21, 38, 0.08);
  --shadow-card: 0 16px 40px rgba(10, 21, 38, 0.12);
  --header-height: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Tipografi
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 10px;
}

.eyebrow.light { color: var(--accent); }
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 48px;
}

.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

/* ==========================================================================
   Butonlar
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 162, 74, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--dark);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.85rem;
}
.btn-whatsapp:hover { background: var(--secondary); color: var(--dark); }

.btn-block { width: 100%; }

.icon-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-height);
  background: rgba(16, 32, 63, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}
.brand-name em { color: var(--secondary); font-style: normal; font-weight: 500; }

.main-nav ul { display: flex; gap: 34px; }

.nav-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--secondary);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--secondary); }
.nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  z-index: 600;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: var(--header-height);
  background: var(--primary);
  overflow: hidden;
}

.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero-monogram {
  position: absolute;
  top: -6%;
  left: -3%;
  font-family: var(--font-display);
  font-size: 42rem;
  line-height: 1;
  color: rgba(201, 162, 74, 0.06);
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 6%;
}

.hero .eyebrow { color: var(--accent); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--secondary); font-style: italic; }

.hero-text {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #1a2c50;
  border-left: 1px solid rgba(201, 162, 74, 0.3);
}
.hero-photo.placeholder, .gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, rgba(16,32,63,0.4), rgba(10,21,38,0.75));
  padding: 20px;
}
.hero-photo.placeholder span, .gallery-item.placeholder span {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px dashed rgba(201, 162, 74, 0.5);
  padding: 10px 20px;
  border-radius: var(--radius);
}

/* ==========================================================================
   Bölüm ayırıcı (Signature element)
   ========================================================================== */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 260px;
  margin: 0 auto;
  padding: 46px 0;
}
.divider span { flex: 1; height: 1px; background: rgba(201, 162, 74, 0.4); }
.divider i {
  font-style: normal;
  color: var(--secondary);
  font-size: 0.9rem;
}

/* ==========================================================================
   Genel bölümler
   ========================================================================== */

.section { padding: 90px 0; }
.section-dark { background: var(--dark); }

/* ==========================================================================
   Kart grid — genel
   ========================================================================== */

.card-grid {
  display: grid;
  gap: 28px;
}

.services-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.packages-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }

/* ---- Hizmet kartları ---- */

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow-soft);
  border-bottom: 3px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--secondary);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 54px; height: 54px;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ---- Galeri ---- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 162, 74, 0.2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

/* ---- Paket kartları ---- */

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(16, 32, 63, 0.08);
  border-radius: var(--radius);
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.package-card:hover { transform: translateY(-6px); }

.package-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.package-card.featured h3,
.package-card.featured .package-desc,
.package-card.featured .package-price { color: var(--white); }
.package-card.featured .package-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }

.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.package-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.package-desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }

.package-list { margin-bottom: 26px; flex: 1; }
.package-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 32, 63, 0.08);
  font-size: 0.9rem;
  color: var(--primary);
}
.package-list li:last-child { border-bottom: none; }

.package-price {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 22px;
}

/* ---- Neden biz kartları ---- */

.why-card {
  text-align: center;
  padding: 34px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.why-icon {
  display: block;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Yorum kartları ---- */

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.review-stars { color: var(--secondary); letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* ==========================================================================
   İletişim
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-list { margin-bottom: 32px; }
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.contact-list a:hover { color: var(--accent); }

.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-info .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.contact-info .btn-outline:hover { background: var(--white); color: var(--primary); }

.contact-map {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

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

.footer-brand .brand-name { display: block; margin: 14px 0 12px; }
.footer-brand p { font-size: 0.88rem; max-width: 320px; line-height: 1.7; }

.footer-links h5, .footer-contact h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { font-size: 0.9rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--secondary); }
.footer-contact p { margin-bottom: 10px; font-size: 0.9rem; }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   Mobil sabit WhatsApp butonu
   ========================================================================== */

.mobile-wa-btn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px;
  box-shadow: 0 -6px 20px rgba(10,21,38,0.18);
}
.mobile-wa-btn .icon-wa { fill: var(--dark); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .services-grid, .why-grid, .packages-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-monogram { font-size: 30rem; }
}

@media (max-width: 840px) {
  .header-actions { display: none; }
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height); left: 0; right: 0;
    background: var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(201,162,74,0.2);
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 26px;
  }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-link { display: block; padding: 14px 0; }

  .hero-frame { grid-template-columns: 1fr; }
  .hero-photo { min-height: 320px; order: -1; }
  .hero-inner { padding: 48px 24px 60px; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-monogram { display: none; }

  .mobile-wa-btn { display: flex; }
  body { padding-bottom: 58px; }
}

@media (max-width: 620px) {
  .services-grid, .why-grid, .packages-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
}
