@font-face {
  font-family: 'GothicNotausgang';
  src: url('/fonts/GothicNotausgang.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'IMFellDWPica-Regular';
  src: url('/fonts/IMFellDWPica-Regular.ttf') format('truetype');
  font-display: swap;
}

/* =========================
   RESET
========================= */

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

body {
  background: white;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 1.5;

  /* PAGE LOAD */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   LINKS
========================= */

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

/* =========================
   LAYOUT
========================= */

.container {
  width: min(94%, 1100px);
  margin: 0 auto;
  padding: 24px 0;
}

/* =========================
   LOGO
========================= */

.logo {
  font-family: 'GothicNotausgang', Arial, sans-serif;
  font-size: clamp(58px, 10vw, 150px);
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: 28px;

  display: inline-block;

  transition: transform 0.6s ease, opacity 0.6s ease;
}

.logo:hover {
  transform: scale(1.04);
  opacity: 0.85;
}

/* =========================
   NAVIGATION
========================= */

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.nav a {
  font-family: 'IMFellDWPica-Regular', serif;
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: 0.4px;
  color: black;
}

/* ACTIVE PAGE */

.nav a.active {
  color: #888;
  font-style: italic;
}

/* =========================
   SECTION HEADERS
========================= */

.section-header {
  font-family: 'GothicNotausgang', Arial, sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  letter-spacing: 1px;

  margin: 8px 0 18px;
  line-height: 0.95;
}

/* =========================
   CTA BUTTONS
========================= */

.cta-button {
  display: inline-block;

  font-family: 'IMFellDWPica-Regular';
  font-size: 22px;
  letter-spacing: 1px;

  padding: 12px 22px;
  border: 1px solid black;

  transition: all 0.25s ease;
}

.cta-button:hover {
  background: black;
  color: white;
  transform: translateY(-2px);
}

/* =========================
   CARDS
========================= */

.card {
  border: 1px solid black;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
}

.card-title {
  font-family: 'GothicNotausgang', Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

/* =========================
   SLIDER
========================= */


.slider {
  position: relative;
  width: min(98%, 1200px);
  margin: 60px auto;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* ARROWS OUTSIDE */
.slider-btn {
  background: transparent;
  border: none;
  font-size: 48px;
  color: black;
  cursor: pointer;

  opacity: 0.4;
  transition: opacity 0.2s ease;

  flex: 0 0 auto;
}

.slider-btn:hover {
  opacity: 1;
}

/* TRACK (CENTER AREA) */
.slider-track {
  flex: 1;

  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;
}

/* IMAGES */
.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;

  scroll-snap-align: center;
}

/* hide scrollbar */
.slider-track::-webkit-scrollbar {
  display: none;
}
.slider-track {
  scrollbar-width: none;
}

/* =========================
   IMAGES
========================= */

img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image img {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   SPLIT LAYOUTS
========================= */

.reiki-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;

  width: min(94%, 1100px);
  margin: 0 auto 60px;
}

.reiki-text {
  flex: 1;
  text-align: left;
}

.reiki-image {
  flex: 1;
}

.reiki-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 40px 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  font-size: 26px;
}

.footer-copyright {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted, #888);
  text-transform: lowercase;
  opacity: 0.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .reiki-section {
    flex-direction: column;
    gap: 28px;
  }

  .reiki-text {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .social-links {
    gap: 18px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}