/* Arya Bektaş — Makeup Studio (Luxury / Editorial Theme) */

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

:root {
  /* Renk Paleti: Nude, Gold, Charcoal */
  --bg-body: #FDFCF8;       /* Kırık beyaz / Krem */
  --bg-card: #FFFFFF;
  --bg-soft: #F5F0EB;       /* Çok hafif vizon */
  
  --text-main: #2C2C2C;     /* Yumuşak Siyah */
  --text-muted: #66605B;
  
  --accent: #D4AF37;        /* Klasik Altın */
  --accent-soft: #EFE6D5;   /* Altın yansıması */
  --btn-bg: #1A1A1A;        /* Butonlar için siyah */
  --btn-text: #FFFFFF;

  --border: #EAE5E0;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Manrope', sans-serif;
  
  --radius: 8px;            /* Daha keskin, modern köşeler */
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, 92%); margin-inline: auto; }

/* --- HEADER --- */
.topbar {
  padding: 20px 0;
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }

.brand { display: flex; align-items: center; gap: 15px; }
.brand__mark {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 600;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%; /* Daire logo */
}
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--font-serif); font-size: 18px; letter-spacing: 0.5px; font-weight: 600; }
.brand__sub { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.top-actions .btn { display: none; } /* Mobilde gizle, sadece ikon kalsın */
@media(min-width: 768px) { .top-actions .btn { display: inline-flex; } }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}
.btn--primary:hover { background: var(--accent); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--text-main); }

.btn--wa {
  background: #25D366; color: #fff; border:none;
}

/* --- HERO SECTION --- */
.hero {
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media(min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}

.hero__copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin: 20px 0;
  color: var(--text-main);
}
.hero__copy h1 i { font-style: italic; color: var(--accent); font-weight: 400; }

.lead { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; font-weight: 300; }

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-soft);
  color: var(--text-main);
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  border-radius: 4px;
}

/* Countdown Minimal */
.countdown { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
.countdown__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 15px; }
.countdown__grid { display: flex; gap: 30px; }
.cd__num { font-family: var(--font-serif); font-size: 32px; line-height: 1; margin-bottom: 5px; }
.cd__txt { font-size: 11px; text-transform: uppercase; color: var(--text-muted); }

/* Hero Images (Collage) */
.hero__media { position: relative; }
.media-card {
  position: relative; z-index: 2;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card img { width: 100%; height: 500px; object-fit: cover; }
.mini-grid {
  position: absolute; right: -20px; bottom: -40px; z-index: 3;
  display: flex; gap: 10px;
  background: #fff; padding: 10px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini { width: 80px; height: 100px; object-fit: cover; border-radius: 4px; }

/* --- SERVICES --- */
.section { padding: 80px 0; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section__head h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 500; margin-bottom: 10px; }
.section__head p { color: var(--text-muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.card__icon { font-size: 32px; color: var(--accent); margin-bottom: 20px; }
.card h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.card__link { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--text-main); }

/* --- CONTACT / SPLIT --- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 800px) { .split { grid-template-columns: 1fr 1.5fr; } }

.contact-grid { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.contact {
  display: flex; align-items: center; gap: 20px;
  padding: 20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact i { color: var(--text-main); font-size: 20px; }
.contact__title { font-weight: 600; font-size: 14px; text-transform: uppercase; }
.contact__val { color: var(--text-muted); font-size: 14px; }

.map-card { height: 100%; min-height: 400px; border-radius: var(--radius); overflow: hidden; filter: grayscale(100%); transition: 0.5s; }
.map-card:hover { filter: grayscale(0%); }
.map-card iframe { width: 100%; height: 100%; border: none; }

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq__item summary {
  font-family: var(--font-serif); font-size: 18px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 20px; }
.faq__item[open] summary::after { content: "-"; }
.faq__body { padding-top: 10px; color: var(--text-muted); font-size: 15px; }

/* --- FOOTER --- */
.footer {
  background: var(--bg-soft);
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
}
.footer__muted { color: var(--text-muted); font-size: 12px; margin-top: 10px; }
.footer__links { display: flex; justify-content: center; gap: 20px; margin-top: 20px; font-size: 13px; font-weight: 600; }



/* Disabled Map Style */
.map-disabled {
  position: relative;
  pointer-events: none; /* Tıklamayı engeller */
  user-select: none;
}
.map-disabled iframe {
  opacity: 0.6; /* Hafif silik görünüm */
  filter: grayscale(100%) contrast(90%);
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 252, 248, 0.4);
  z-index: 10;
}
.map-overlay span {
  background: #fff;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

/* Disabled Button / Badge Look */
.badge-static {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  cursor: default;
}

/* --- DUAL VIDEO PLAYER --- */

.video-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr; /* İki video yan yana */
  gap: 15px;
  position: relative;
  border-radius: var(--radius);
  /* Videoların dışına taşmasını engellemek için */
}

.video-frame {
  position: relative;
  border-radius: 12px; /* Köşeleri yumuşat */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* Lüks gölge */
  background: #000; /* Video yüklenene kadar siyah */
  aspect-ratio: 9 / 16; /* Dikey video oranı */
  transform: translateY(0);
  transition: transform 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Hafif bir hareket katar: Sağdaki video biraz aşağıda dursun (Editorial hava) */
.video-frame:nth-child(2) {
  transform: translateY(30px);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Videoyu çerçeveye doldur */
  display: block;
}

/* Ses Butonu Tasarımı */
.sound-btn {
  position: absolute;
  bottom: 40px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text-main);
  
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sound-btn:hover {
  background: #fff;
  transform: translateX(-50%) scale(1.05);
}

/* Mobilde Görünüm */
@media (max-width: 768px) {
  .video-showcase {
    gap: 10px;
    max-width: 100%;
  }
  .video-frame:nth-child(2) {
    transform: translateY(15px); /* Mobilde kaymayı azalt */
  }
  .sound-btn {
    bottom: 20px;
    padding: 8px 16px;
  }
}

/* --- AUTH MODAL CSS --- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    z-index: 9999; display: none; place-items: center; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.open { display: grid; opacity: 1; }

.modal-container {
    background: #fff; width: 100%; max-width: 420px;
    border-radius: 16px; padding: 40px; position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid var(--border);
    transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-container { transform: translateY(0); }

.modal-close {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    font-size: 28px; cursor: pointer; color: var(--text-muted);
}

.modal-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 25px; }
.tab-btn {
    flex: 1; background: none; border: none; padding: 15px;
    font-family: var(--font-serif); font-size: 16px; font-weight: 600;
    color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent;
}
.tab-btn.active { color: var(--text-main); border-bottom-color: var(--accent); }

.auth-form { display: none; animation: fadeIn 0.4s ease; }
.auth-form.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.form-title { font-size: 14px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; font-weight: 700; letter-spacing: 1px; text-align: center; }

.input-group { position: relative; margin-bottom: 15px; }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.input-group input {
    width: 100%; padding: 14px 14px 14px 45px;
    border: 1px solid var(--border); border-radius: 8px;
    background: #fdfcf8; font-family: var(--font-sans);
    transition: 0.3s;
}
.input-group input:focus { border-color: var(--accent); background: #fff; outline: none; }

.btn-full { width: 100%; margin-top: 10px; justify-content: center; }
.form-footer { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 20px; color: var(--text-muted); }
.forgot-link { color: var(--text-main); font-weight: 600; }
.legal-text { font-size: 11px; color: var(--text-muted); text-align: center; margin-bottom: 15px; }

.msg-box { margin-top: 10px; font-size: 13px; text-align: center; color: #e74c3c; font-weight: 600; }

/* PROFİL EKSTRALARI */
.badge { display: inline-block; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.btn-block { width: 100%; display: block; }

/* Animasyon */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Elemanları Düzeltme */
input[type="file"] { padding: 10px; background: #fff; }