/* ===== Geleneksel Türk Halk Teması ===== */
:root {
  --color-bg:          #f9f4ee;
  --color-bg-alt:      #f2ebe0;
  --color-surface:     #ece3d4;
  --color-text:        #2b1d0e;
  --color-text-muted:  #6b5540;
  --color-red:         #a0281a;
  --color-red-dark:    #7a1c10;
  --color-gold:        #c8960c;
  --color-gold-light:  #e8b830;
  --color-border:      rgba(139, 90, 43, 0.28);
  --font-display:      'Amiri', Georgia, serif;
  --font-body:         'Lato', system-ui, sans-serif;
  --radius-sm:         4px;
  --radius-md:         8px;
  --radius-lg:         16px;
  --transition:        0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Kağıt dokusu efekti */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23f9f4ee'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23c8960c' opacity='0.04'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23a0281a' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 4px 4px;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--transition); }
ul   { list-style: none; }
main { position: relative; z-index: 1; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 244, 238, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-red);
  transition: box-shadow var(--transition);
}

/* Alt dekoratif şerit */
.header::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-red)   0px,  var(--color-red)   8px,
    var(--color-gold)  8px,  var(--color-gold)  16px,
    var(--color-red)   16px, var(--color-red)   24px,
    transparent        24px, transparent        32px
  );
  opacity: 0.55;
}

.header.scrolled {
  box-shadow: 0 3px 20px rgba(43, 29, 14, 0.15);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2rem;
}

.logo { display: flex; align-items: center; }

.logo img {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--color-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

/* Köşe rozet süsleri */
.hero::before,
.hero::after {
  content: '❋';
  position: absolute;
  font-size: 5rem;
  color: var(--color-red);
  opacity: 0.07;
  line-height: 1;
}
.hero::before { top: 5rem; left: 3rem; }
.hero::after  { bottom: 3rem; right: 3rem; transform: scaleX(-1); }

.hero-bg { display: none; }

.hero-content { position: relative; z-index: 1; }

/* Üst çizgi */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-red);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 1.25rem auto 2.5rem;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  border: 2px solid var(--color-red);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 40, 26, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(160, 40, 26, 0.05);
}

/* ===== Hero Scroll ===== */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: rotate(45deg);
  animation: sink 2s ease-in-out infinite;
}

@keyframes sink {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 1;   }
}

/* ===== Sections ===== */
.section { position: relative; padding: 6rem 2rem; }
.section + .section::after { display: none; }

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bölüm süsü */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-red);
  font-size: 1rem;
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  display: block;
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--color-border));
}

.section-ornament::after {
  background: linear-gradient(90deg, var(--color-border), transparent);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-text);
}

/* Altın alt çizgi */
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.6rem;
  background: var(--color-gold);
  border-radius: 2px;
}

/* ===== About ===== */
.about {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about::before { display: none; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-visual { display: flex; justify-content: center; }

.about-card {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(43, 29, 14, 0.1);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-red));
}

.card-pattern { display: none; }

.card-number {
  position: relative;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}

.card-label {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(43, 29, 14, 0.06);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(43, 29, 14, 0.12);
  border-color: rgba(160, 40, 26, 0.3);
}

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Info Box ===== */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(160, 40, 26, 0.06);
  border: 1.5px solid rgba(160, 40, 26, 0.3);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius-md);
}

.info-icon {
  font-size: 1.4rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.info-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.info-text strong {
  display: block;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.info-text strong + strong {
  display: inline;
  color: var(--color-text);
  font-size: inherit;
  letter-spacing: 0;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery::before { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(43, 29, 14, 0.08);
}

.gallery-item::before { display: none; }
.gallery-item::after  { display: none; }

.gallery-item:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 40px rgba(43, 29, 14, 0.18);
  border-color: rgba(160, 40, 26, 0.45);
}

.gallery-item img,
.gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-item-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: rgba(43, 29, 14, 0.75);
  border-radius: var(--radius-sm);
  color: #f9f4ee;
}

.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(160, 40, 26, 0.88);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  padding-left: 4px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(160, 40, 26, 0.4);
}

.gallery-item:hover .gallery-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item[data-type="image"] .gallery-play-icon { display: none; }

.gallery-cta {
  position: relative;
  text-align: center;
  padding: 3rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.gallery-cta::before { display: none; }
.gallery-cta::after  { display: none; }

.gallery-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 10, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media  { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-image  { display: none; }
.lightbox-video  { display: none; width: 100%; max-width: 900px; }
.lightbox.show-image .lightbox-image { display: block; }
.lightbox.show-video  .lightbox-video  { display: block; }

/* ===== Contact ===== */
.contact { position: relative; }
.contact::before { display: none; }

.contact-content {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.contact-text { color: var(--color-text-muted); margin-bottom: 2rem; }

.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.contact-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border: none;
}

.contact-link.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.contact-link.whatsapp {
  background: #25d366;
  color: white;
  border: none;
}

.contact-link.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ===== Footer ===== */
.footer {
  padding: 2.5rem;
  text-align: center;
  background: var(--color-bg-alt);
  border-top: 2px solid var(--color-red);
}

.footer::before,
.footer::after { display: none; }

.footer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(249, 244, 238, 0.98);
    border-top: 1px solid var(--color-border);
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero::before, .hero::after { display: none; }
}
