/* ===========================
   Beyza Öngün Güzellik Merkezi
   =========================== */

:root {
  --color-bg: #FAF6F2;
  --color-bg-alt: #F3E8E0;
  --color-card: #FFFFFF;
  --color-primary: #B98072;
  --color-primary-dark: #9C6B5E;
  --color-gold: #C9A66B;
  --color-text: #3A2E2A;
  --color-text-light: #7A6A63;
  --color-border: #E7D9CE;
  --shadow-soft: 0 10px 30px rgba(58, 46, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -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: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
.section-alt { background: var(--color-bg-alt); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-light);
  max-width: 620px;
  font-size: 16px;
}

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(185, 128, 114, 0.35);
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebc59; transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 42px; width: auto; }
.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-text);
  cursor: pointer;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* =========================================
   Yüzen Instagram Butonu
   ========================================= */
.instagram-float {
  position: fixed;
  bottom: 96px; /* WhatsApp butonunun (26px) ve kendi boyunun (60px) + 10px boşluğun toplamı. Böylece tam üstünde durur. */
  right: 26px; /* Ekranın sağından WhatsApp ile aynı hizada kalması için */
  z-index: 200;
  width: 60px;
  height: 60px;
  /* Instagram'ın orijinal renk geçişi (gradient) */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff; /* İkon rengi beyaz */
  border-radius: 50%; /* Tam yuvarlak yapar */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px; /* Font Awesome ikon büyüklüğü */
  box-shadow: 0 10px 25px rgba(214, 36, 159, 0.45); /* Tatlı bir pembe gölge */
  transition: transform 0.3s ease; /* Fareyle üzerine gelinceki büyüme animasyonu */
}

/* Fareyle üzerine gelindiğinde hafifçe büyümesi için */
.instagram-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-desc {
  color: var(--color-text-light);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-primary);
}
.hero-stats div span {
  font-size: 13px;
  color: var(--color-text-light);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Photo placeholder — used until real salon photos are ready */
.photo-placeholder {
  background: linear-gradient(135deg, #F3E8E0 0%, #E7CDBB 100%);
  background-size: 200% 200%;
  animation: photoShimmer 1.8s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.photo-placeholder.photo-loaded { animation: none; }
@keyframes photoShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.photo-placeholder .real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.photo-placeholder .real-photo.is-visible { opacity: 1; }
.photo-placeholder .ph-inner {
  text-align: center;
  color: var(--color-primary-dark);
}
.photo-placeholder .ph-icon {
  display: block;
  font-size: 34px;
  color: var(--color-gold);
  margin-bottom: 10px;
}
.photo-placeholder .ph-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}
.hero-badge .stars { color: var(--color-gold); font-size: 14px; letter-spacing: 1px; }
.hero-badge strong { font-size: 15px; }
.hero-badge small { color: var(--color-text-light); font-size: 12px; display:block; }

/* About */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1/1;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.about-point strong { display: block; font-size: 15px; margin-bottom: 3px; }
.about-point p { font-size: 13.5px; color: var(--color-text-light); }

/* Services */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  background: var(--color-card);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-light);
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.service-group { display: none; }
.service-group.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.service-card span.name { font-weight: 600; font-size: 15px; }
.service-card a.ask {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}
.service-card.soon {
  opacity: 0.75;
  position: relative;
}
.soon-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--color-gold);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* Reviews */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.google-rating strong { font-size: 24px; font-family: var(--font-heading); }
.google-rating .stars { color: var(--color-gold); font-size: 15px; }
.google-rating small { color: var(--color-text-light); font-size: 12.5px; display:block; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.review-card .stars { color: var(--color-gold); font-size: 13px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--color-text-light); margin-bottom: 16px; }
.review-card .author { display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--color-primary); font-size: 14px;
}
.review-card .author strong { font-size: 13.5px; display:block; }
.review-card .author span { font-size: 11.5px; color: var(--color-text-light); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
}
.faq-question .plus { font-size: 20px; color: var(--color-primary); transition: transform 0.25s; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 20px; color: var(--color-text-light); font-size: 14.5px; max-width: 660px; }

/* Contact */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-card strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-card span, .contact-card a.link { font-size: 13.5px; color: var(--color-text-light); }
.contact-card a.link { color: var(--color-primary); font-weight: 600; }

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

/* Footer */
.site-footer {
  background: var(--color-text);
  color: #EDE3DC;
  padding: 56px 0 26px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #C9BDB5; font-size: 14px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-col h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 18px; color: #fff; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: #C9BDB5; font-size: 14px; }
.footer-col ul li a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #9E8F87;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container, .about .container, .contact .container { grid-template-columns: 1fr; }
  .about-media, .hero-media { order: -1; }
  .service-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-menu, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .header-inner.menu-open .nav-menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 18px;
  }
  .service-grid, .review-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
