/* ==========================================
   BETTINA RITTER – No°13 Concept Store
   ========================================== */

:root {
  --gold:       #c9a640;
  --gold-light: #e8c96a;
  --gold-dark:  #a07c20;
  --text:       #2a2a2a;
  --muted:      #6b6b6b;
  --bg:         #ffffff;
  --shape:      #f2f0ec;
  --nav-h:      80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
body  {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

/* ── Shared typography ── */
h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.section-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.ornament {
  line-height: 0;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.ornament img {
  height: 16px !important;
  width: auto !important;
  max-width: 140px;
  opacity: 0.85;
  display: inline-block;
}

.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  margin-top: 24px !important;
  line-height: 1.2;
}

.gold-link {
  color: var(--gold);
  transition: opacity 0.2s;
}
.gold-link:hover { opacity: 0.7; }

/* ==========================================
   NAVIGATION
   ========================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 1px 18px rgba(0,0,0,0.09); }

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-logo:hover img { opacity: 0.8; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://ritter-bettina.de/wp-content/uploads/2021/06/1-Header.jpg')
              right center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 14, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-logo {
  width: clamp(200px, 26vw, 360px);
  height: auto;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  animation: scrollFloat 2.5s ease-in-out infinite;
  transition: opacity 0.25s;
}
.hero-scroll-btn:hover { opacity: 0.65; }
.hero-scroll-btn svg { width: 100%; height: 100%; }

@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ==========================================
   ÜBER MICH
   ========================================== */
.about {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.about-shape {
  position: absolute;
  inset: 0;
  background: var(--shape);
  clip-path: polygon(0 0, 60% 0, 44% 100%, 0 100%);
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
}

.about-text-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 60px 140px 8vw;
}

.about-text-wrap {
  max-width: 440px;
  text-align: center;
}
.about-text-wrap p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-img-col {
  padding-top: 80px;
}
.about-img-col img {
  width: 100%;
  height: calc(100% - 80px);
  min-height: 700px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ==========================================
   LEISTUNGEN
   ========================================== */
.leistungen { background: var(--bg); }

.leistungen-header {
  text-align: center;
  padding: 90px 40px 54px;
  background: var(--bg);
}

.leistungen-image-wrap {
  width: 100%;
  overflow: hidden;
}
.leistungen-image-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.leistungen-cols {
  background: var(--shape);
  padding: 76px 48px 90px;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.leistung h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}

.leistung p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.95;
}

/* ==========================================
   NO°13 SLIDER
   ========================================== */
.section-no13 { background: var(--bg); padding-bottom: 100px; }

.slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77,0,0.18,1);
}
.slide {
  min-width: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.82);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: background 0.25s, transform 0.25s;
}
.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.slider-btn-prev { left: 22px; }
.slider-btn-next { right: 22px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: #fff; transform: scale(1.25); }

.no13-content {
  padding: 90px 40px 40px;
  text-align: center;
}
.container-narrow {
  max-width: 660px;
  margin: 0 auto;
}
.no13-content h2 { margin-bottom: 16px; }
.no13-content p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 16px;
}

/* ==========================================
   KONTAKT
   ========================================== */
.kontakt {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.kontakt-shape {
  position: absolute;
  inset: 0;
  background: var(--shape);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 24% 100%);
  z-index: 0;
}

.kontakt-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42% 58%;
}

.kontakt-img-col img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.kontakt-text-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8vw 80px 60px;
}

.kontakt-text-wrap {
  max-width: 500px;
  text-align: center;
}
.kontakt-text-wrap p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 18px;
}
.kontakt-address strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--shape);
  padding: 100px 48px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p strong {
  color: var(--text);
  font-weight: 500;
}

.footer-col-logo img {
  width: clamp(120px, 18vw, 200px);
  height: auto;
  margin: 0 auto;
}
.footer-col-logo a { display: block; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: var(--muted);
  transition: color 0.25s;
  text-decoration: none;
}
.footer-instagram:hover { color: var(--gold); }
.footer-instagram svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── Copyright-Leiste ── */

/* ── Scroll nach oben ── */
.scroll-top {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
  transition: opacity 0.25s, transform 0.25s;
}
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 100%; height: 100%; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 24px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-shape { clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
  .about-text-col { padding: 60px 32px; }
  .about-img-col img { min-height: 400px; height: 400px; }

  .leistungen-grid { grid-template-columns: 1fr; gap: 40px; }

  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-shape { clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
  .kontakt-img-col img { min-height: 400px; height: 400px; }
  .kontakt-text-col { padding: 60px 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col-logo { order: -1; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav { justify-content: center; }
  .nav-logo img { height: 48px; }

  .hero-logo { width: clamp(160px, 60vw, 280px); }

  .leistungen-image-wrap img { height: 240px; }
  .slider { margin-top: 40px; }
  .slider-btn { width: 36px; height: 36px; font-size: 1.2rem; }

  .footer { padding: 40px 24px 36px; }
}
