/* ------------------------------
   GRUNDEINSTELLUNGEN
------------------------------ */

:root {
  /* SCHRIFTEN */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;

  /* SCHRIFTGRÖSSEN */
  --text-small: 11px;
  --text-body: 17px;
  --text-large: 19px;

  --heading-small: 28px;
  --heading-section: clamp(40px, 5vw, 64px);

  /* FARBEN */
--color-cream: #f4eadc;
--color-light: #fffaf3;
--color-dark: #4f5945;
--color-accent: #e85d2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background-color: var(--color-cream);
  color: var(--color-dark);

  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.7;
}


/* ------------------------------
   HEADER
------------------------------ */


.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;

  width: 100%;
  padding: 30px 5%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent;
  color: white;
}

.logo {
  position: relative;
  z-index: 102;

  color: white;
  text-decoration: none;

  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  position: relative;

  color: white;
  text-decoration: none;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background-color: white;

  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}


/* MENU BUTTON */

.menu-toggle {
  display: none;

  position: relative;
  z-index: 102;

  width: 35px;
  height: 25px;

  padding: 0;
  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;

  width: 100%;
  height: 1px;

  background-color: white;

  transition:
    transform 0.3s ease,
    top 0.3s ease;
}

.menu-toggle span:first-child {
  top: 7px;
}

.menu-toggle span:last-child {
  top: 17px;
}


/* ------------------------------
   HERO
------------------------------ */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 14, 0.32);
}

.hero {
  position: relative;
  min-height: 92vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 100px 20px;

  background: url("images/hero.jpg");
  background-size: cover;
  background-position: center 35%;

  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  text-align: center;
}

.date {
  margin: 0 0 15px;

  font-size: 14px;
  letter-spacing: 4px;
}

.hero h1 {
  margin: 0;

  font-family: var(--font-serif);
  font-size: clamp(55px, 9vw, 110px);
  font-weight: 400;
  line-height: 1;
}

.subtitle {
  max-width: 650px;
  margin: 30px auto 0;

  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
}

/* ------------------------------
   INVITATION
------------------------------ */

.invitation {
  padding: 130px 24px;
  background-color: var(--color-cream);
}

.invitation-content {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  margin: 0;

  font-family: var(--font-serif);
  font-size: var(--heading-section);
  font-weight: 400;
  line-height: 1.1;
}

.section-label {
  margin: 0 0 22px;

  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.invitation-greeting {
  margin-top: 36px !important;

  font-family: var(--font-serif);
  font-size: 24px !important;
  font-weight: 400;
  line-height: 1.4 !important;
}

.invitation-content p {
  margin: 0 0 28px;

  font-size: 19px;
  font-weight: 300;
  line-height: 1.9;
}

/* ------------------------------
   LOCATION
------------------------------ */

.location-section {
  padding: 130px 6%;
  background-color: var(--color-light);
}


/* ÜBERSCHRIFT */

.location-header {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.location-header h2 {
  max-width: 650px;
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}


/* LAYOUT */

.location-layout {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 75px;

  align-items: center;
}


/* SLIDER */

.location-slider {
  position: relative;

  width: 100%;
  height: 650px;

  overflow: hidden;

  touch-action: pan-y;
}

.slides {
  position: relative;

  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}


/* SLIDER BUTTONS */

.slider-button {
  position: absolute;
  bottom: 25px;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;

  background-color: rgba(30, 20, 14, 0.3);
  color: white;

  font-size: 18px;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.slider-button:hover {
  background-color: rgba(30, 20, 14, 0.7);
  transform: scale(1.05);
}

.slider-button.prev {
  left: 25px;
}

.slider-button.next {
  left: 80px;
}


/* SLIDE COUNTER */

.slide-counter {
  position: absolute;

  right: 25px;
  bottom: 32px;

  color: white;

  font-size: 11px;
  letter-spacing: 2px;
}


/* LOCATION TEXT */

.location-copy {
  padding-top: 0;
}

.location-copy > p {
  margin: 0 0 24px;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}


/* ADDRESS */

.location-address {
  margin-top: 45px;
  padding-top: 25px;

  border-top: 1px solid #cdbda9;
}

.location-name {
  margin-bottom: 10px !important;

  font-family: "Playfair Display", serif;
  font-size: 23px !important;
}

.location-address p {
  font-size: 14px;
  line-height: 1.7;
}

.location-address a {
  display: inline-block;
  margin-top: 5px;

 color: var(--color-dark);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.location-address a:hover {
  text-decoration: underline;
}


/* ------------------------------
   LOCATION DETAILS
------------------------------ */

.location-details {
  max-width: 1200px;
  margin: 90px auto 0;

  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 60px;

  align-items: center;
}

.location-map {
  width: 100%;
  margin: 0;
}

.location-map iframe {
  display: block;

  width: 100%;
  height: 420px;

  border: 1px solid rgba(79, 89, 69, 0.25);
}

.location-address {
  margin: 0;
  padding: 0;
  border: 0;
}

.location-name {
  margin: 0 0 15px !important;

  font-family: var(--font-serif);
  font-size: 28px !important;
}

.location-address p {
  font-size: 15px;
  line-height: 1.8;
}

.location-address a {
  display: block;
  width: fit-content;

  margin-top: 18px;

  color: var(--color-dark);

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;

  text-decoration: none;
  text-transform: uppercase;
}

.location-address a:hover {
  opacity: 0.55;
}

.map-link {
  margin-top: 10px !important;
}


.map-link:hover {
  opacity: 0.55;
}

/* ------------------------------
   PROGRAMM
------------------------------ */

.program-section {
  padding: 130px 6%;

   background-color: var(--color-dark);
  color: var(--color-light);
}


/* HEADER */

.program-header {
  max-width: 1000px;
  margin: 0 auto 70px;
}

.program-header .section-label {
  color: #fffaf3;
}

.program-header h2 {
  margin: 10px 0 30px;

  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.program-intro {
  max-width: 580px;

  margin: 0;

  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}


/* GRID */

.program-grid {
  max-width: 1000px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}


/* CARD */

.program-card {
  min-height: 320px;

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.25);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-4px);

  background-color: rgba(255, 255, 255, 0.04);
}


/* DATUM */

.program-date {
  display: flex;
  align-items: center;
  gap: 22px;
}

.day-number {
  font-family: "Playfair Display", serif;
  font-size: 76px;
  line-height: 0.8;
}

.weekday {
  margin: 0 0 4px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.month-year {
  margin: 0;

  font-size: 11px;
  letter-spacing: 1.5px;

  opacity: 0.65;
  text-transform: uppercase;
}


/* EVENTS */

.program-content {
  padding-top: 50px;
}

.program-content p {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
}

.program-content p + p {
  margin-top: 30px;
}

/* ------------------------------
   TUSCANY
------------------------------ */

.tuscany-section {
  padding: 130px 6%;
  background-color: var(--color-cream);
}

.tuscany-header {
  max-width: 1000px;
  margin: 0 auto 70px;
}

.tuscany-intro {
  max-width: 520px;

  margin: 30px 0 0;

  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}


/* LISTE */

.tuscany-list {
  max-width: 1000px;
  margin: 0 auto;

  border-top: 1px solid #cdbda9;
}

.tuscany-item {
  display: grid;

  grid-template-columns:
    60px
    minmax(200px, 0.8fr)
    1.2fr;

  gap: 30px;

  align-items: center;

  padding: 32px 0;

  border-bottom: 1px solid #cdbda9;
}


/* NUMMER */

.tuscany-number {
  font-size: 10px;
  letter-spacing: 2px;

  opacity: 0.6;
}


/* TITEL */

.tuscany-item h3 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
}


/* BESCHREIBUNG */

.tuscany-item p {
  margin: 0;

  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}


/* ------------------------------
   FAQ
------------------------------ */

.faq-section {
  padding: 130px 6%;
background-color: var(--color-light);
}

.faq-header,
.faq-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-header h2 {
  margin: 5px 0 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
}

.faq-list {
  border-top: 1px solid #cdbda9;
}

.faq-item {
  border-bottom: 1px solid #cdbda9;
}

.faq-item summary {
  padding: 30px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  cursor: pointer;
  list-style: none;

  font-family: "Playfair Display", serif;
  font-size: 23px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 300;

  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 0 32px;
}

.faq-answer p {
  margin: 0;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.faq-contact {
  margin-top: 50px;

  font-size: 15px;
  line-height: 1.7;

  text-align: center;
  opacity: 0.75;
}


/* ------------------------------
   FOOTER
------------------------------ */

.footer {
  min-height: 70vh;
  padding: 100px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--color-accent);
  color: white;

  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-date {
  margin: 0 0 25px;

  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer h2 {
  max-width: 900px;
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 10vw, 125px);
  font-weight: 400;
  line-height: 0.9;
}

.footer-message {
  margin: 30px 0 55px;

  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-style: italic;
}

.back-to-top {
  color: white;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;

  text-transform: uppercase;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  padding-bottom: 5px;
}

/* ------------------------------
   SCROLL ANIMATIONS
------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(25px);

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   SMARTPHONE
------------------------------ */


@media (max-width: 800px) {

/* ------------------------------
   MOBILE HERO
------------------------------ */
.hero {
  min-height: 100svh;
  height: 100svh;

  padding: 90px 24px 45px;

  justify-content: center;
  align-items: center;

  text-align: center;

  background-position: center;
}

.hero-content {
  width: 100%;

  transform: translateY(180px);
}

.hero .date {
  margin-bottom: 15px;

  font-size: 12px;
  letter-spacing: 3px;
}

.hero h1 {
  font-size: clamp(52px, 15vw, 70px);
  line-height: 0.85;
  letter-spacing: -2px;
}

.hero h1 em {
  margin-left: 0;
}

.hero .subtitle {
  max-width: 310px;
  margin: 28px auto 0;

  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 1.5px;
}

.scroll-down {
  right: 24px;
  bottom: 28px;
  left: auto;

  font-size: 8px;
}

.scroll-down span {
  height: 25px;
}

  header {
    flex-direction: column;
    gap: 20px;
  }
.header {
  padding: 24px;
}

.menu-toggle {
  display: block;
}

.nav {
  position: fixed;
  inset: 0;
  z-index: 101;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 25px;

  background-color: #3d3028;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.nav.open {
  opacity: 1;
  visibility: visible;
}

.nav a {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 400;

  letter-spacing: 0;
  text-transform: none;
}

.nav a::after {
  display: none;
}


/* Hamburger wird zum X */

.menu-toggle.open span:first-child {
  top: 12px;
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  top: 12px;
  transform: rotate(-45deg);
}

 .invitation {
  padding: 85px 24px 90px;
}

  .invitation-content p {
    font-size: 17px;
  }

  .invitation-greeting {
  font-size: 22px !important;
}

.location-section {
  padding: 90px 24px;
}

.location-header {
  margin-bottom: 40px;
}

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

.location-slider {
  height: 380px;
}

.location-copy {
  padding-top: 0;
}

.slider-button {
  width: 40px;
  height: 40px;
}

.location-map {
    margin-top: 40px;
  }

  .location-map iframe {
    height: 280px;
  }

  .location-details {
  margin-top: 45px;

  grid-template-columns: 1fr;
  gap: 35px;
}

.location-map iframe {
  height: 280px;
}

.location-address {
  padding-top: 0;
}

.location-address a {
  font-size: 10px;
}

.map-link {
  margin-top: 16px;
  font-size: 10px;
}

  .program-section {
    padding: 90px 24px;
  }

  .program-header {
    margin-bottom: 50px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 280px;
    padding: 28px;
  }

  .day-number {
    font-size: 64px;
  }

  .program-content p {
    font-size: 19px;
  }



.tuscany-section {
  padding: 90px 24px;
}

.tuscany-header {
  margin-bottom: 50px;
}

.tuscany-intro {
  margin-top: 20px;
}

.tuscany-item {
  grid-template-columns: 35px 1fr;
  gap: 10px 20px;

  padding: 25px 0;
}

.tuscany-item p {
  grid-column: 2;
}

.tuscany-item h3 {
  font-size: 25px;
}

.faq-section {
  padding: 90px 24px;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-item summary {
  padding: 24px 0;
  font-size: 20px;
}

.footer {
  min-height: 60vh;
  padding: 80px 24px;
}

}