@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');


:root{
  --gold: #C9A24D;
  --gold-soft: #E6D7A3; 
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#5a5a5a;
  --line:#e9e9e9;

  --red:#d10a0a;
  --red2:#ff2a2a;

  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;

  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  font-weight: 450;
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}

.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0;}
.brand{display:flex; align-items:baseline; gap:10px;}
.brand .logo{font-weight:800; letter-spacing:.16em;}
.brand .tag{font-size:13px; color:var(--muted); border-left:1px solid var(--line); padding-left:10px;}

.navlinks{display:flex; align-items:center; gap:18px;}
.navlinks a{font-weight:600; font-size:14px; opacity:.9;}
.navlinks a:hover{opacity:1;}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  font-weight:700; font-size:14px;
  cursor:pointer; transition:.18s ease;
  background:#fff;
}
.btn:hover{transform: translateY(-1px);}
.btn.primary{
  background: linear-gradient(135deg, var(--red), var(--red2));
  color:#fff; border-color: transparent;
  box-shadow: 0 14px 35px rgba(209,10,10,.22);
}
.btn.dark:hover{
  box-shadow: 0 12px 28px rgba(201,162,77,.22);
  transform: translateY(-1px);
}
.btn.ghost{background:#fff;color:#111;}

.hamburger{display:none; border:1px solid var(--line); background:#fff; border-radius:12px; padding:10px 12px; font-weight:900;}
.mobile-menu{display:none; border-top:1px solid var(--line); padding:10px 0 16px;}
.mobile-menu a{display:block; padding:12px 0; border-bottom:1px solid var(--line); font-weight:800;}
.mobile-menu a:last-child{border-bottom:0}
.mobile-menu.show{display:block;}

.hero{padding:56px 0 26px;}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:stretch;}

.kicker{display:inline-flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:12px;}
.kicker .dot{width:9px;height:9px;border-radius:99px; background: var(--red); box-shadow: 0 0 0 6px rgba(209,10,10,.12);}

.h1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 54px);
  margin:14px 0 12px;
  line-height:1.15;
  letter-spacing:-0.01em;
  font-weight: 500;
}
.lead{
  font-size:16px;
  color:var(--muted);
  max-width:52ch;
  font-weight:400;
}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;}

.panel{
  background:#fff;
  border:1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, #fff, #fff) padding-box,
              linear-gradient(135deg, rgba(209,10,10,.35), rgba(0,0,0,.15)) border-box;
}
.panel:before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width:220px;height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(209,10,10,.18), transparent 60%);
  transform: rotate(22deg);
}
.panel h3{margin:0 0 6px}
.panel p{margin:0;color:var(--muted);font-size:14px}
.panel .big{font-size:28px;font-weight:950;letter-spacing:-.02em;margin-top:10px;}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}
.badge{font-size:12px;font-weight:900;border:1px solid var(--line);padding:8px 10px;border-radius:999px;background:#fff;}

.section{padding:34px 0;}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:16px;}
.section-title h2{margin:0; font-size:22px; letter-spacing:-.01em;}
.section-title p{margin:0; color:var(--muted); max-width:60ch; font-size:14px;}

.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:16px;}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted);font-size:14px}
.card .actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

.list{margin:12px 0 0; padding:0; list-style:none;}
.list li{display:flex; gap:10px; padding:10px 0; border-top:1px solid var(--line); color:#151515; font-weight:750;}
.list li{ ... font-weight:600; }

.note{
  margin-top:12px;
  padding:12px 14px;
  border:1px dashed rgba(209,10,10,.35);
  background: rgba(209,10,10,.04);
  border-radius: 14px;
  color:#2a2a2a;
  font-size:13px;
}

.footer{border-top:1px solid var(--line); padding:22px 0; margin-top:24px; color: var(--muted); font-size:13px;}
.footer .row{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.footer a{font-weight:900}

.whatsapp-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  border-radius: 999px;
  padding: 12px 14px;
  background: #111;
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  font-weight:950;
}
.whatsapp-fab:hover{transform: translateY(-2px);}

@media (max-width: 880px){
  .hero-grid{grid-template-columns: 1fr;}
}
@media (max-width: 760px){
  .navlinks{display:none}
  .hamburger{display:inline-flex}
  .grid-2{grid-template-columns:1fr}
}
.gold{
  color: var(--gold);
  font-weight:500;
}
.btn.dark:hover{
  box-shadow: 0 12px 28px rgba(201,162,77,.22);
  transform: translateY(-1px);
}

.btn.dark{
  background:#1c1c1c;     /* saf siyah değil */
  color:#f6f6f6;
  border-color:#1c1c1c;
}
.whatsapp-fab{
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color:#ffffff;
  border: none;
  font-weight:600;
  letter-spacing: .02em;
  box-shadow: 0 14px 34px rgba(37,211,102,.35);
}

.product-hero{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin: 12px 0 10px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.cream-hero{  
  width: 100%;
  height: 380px;
  background: url("images/elv.cream.3.png") center/contain no-repeat;
  background-color: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  margin-bottom: 24px;
}

@media (max-width: 768px){
  .cream-hero{
    height: 260px;
    display:block;
    background-size: contain;
  }
}

.elv-cream-page main.section{
  padding-top: 0 !important;
}

.elv-cream-page .cream-hero{
  margin-bottom: 0 !important;
}

.elv-cream-page .container{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.elv-cream-page h1,
.elv-cream-page h2,
.elv-cream-page h3{
  margin-top: 8px !important;
}

.home-hero{
  width:100%;
  height:360px;
  background: url("images/elv.logo.png") center/cover no-repeat;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
  margin-bottom: 28px;
}


@media (max-width: 760px){
  .home-hero{
    height:260px;
  }
}

.coaching-page main.section{
  padding-top: 0 !important;
}

.coaching-page .container{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.coaching-page h1,
.coaching-page h2,
.coaching-page h3{
  margin-top: 10px !important;
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:56px;
  max-width:1100px;
  margin:0 auto;     
  align-items:flex-start;
}

.about-left h1{
  font-size:2.2rem;
  margin-bottom:16px;
}

.about-left p{
  font-size:1.05rem;
  line-height:1.7;
}

.about-right h2{
  margin-top:28px;
  margin-bottom:12px;
}

.about-right p{
  line-height:1.7;
  margin-bottom:12px;
}

/* Mobil */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
}

body{
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color:#1e1e1e;
}

h1, h2, h3{
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-center{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px;
}

.about-center h1,
.about-center .back-home,
.about-center .about-sign{
  text-align: center;
}

.about-center p{
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.9;
  margin: 14px 0;
}

@media (max-width: 520px){
  .about-center p{
    text-align: left;
  }
}

.about-bg{
  background-image: url("images/arkaplan.3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.about-center{
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(2px);
  border-radius: 18px;
}

@media (max-width: 600px){
  .about-bg{
    padding: 30px 0;
  }

  .about-center{
    background: rgba(255,255,255,0.92);
  }
}
