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

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

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f6f3;
  color: #341919;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  padding: 8rem 8%;
  transition: opacity 0.3s ease;
  overflow-x: hidden;
}


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

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff8f2;
  box-shadow: 0 4px 6px rgba(59, 56, 56, 0.1);
  padding: 1rem 2rem;
  font-family: 'Acumin Regular', sans-serif;
}

.nav-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #341919;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b69e96;
}

.book-btn {
  padding: 0.6rem 2rem;
  background-color: #cbbaaf;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: auto;
}

.book-btn:hover {
  background-color: #e9e3dd;
}


/* =========================================================
   BUTTONS & LINKS
========================================================= */

button,
a {
  padding-top: 12px;
  font-size: 1rem;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  border: none;
  cursor: pointer;
}


/* =========================================================
   MENU ICON
========================================================= */

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.menu-icon div {
  width: 25px;
  height: 3px;
  background-color: #341919;
  transition: all 0.3s ease;
}


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

@media (max-width: 768px) {

  .nav-content {
    justify-content: space-between;
  }

  .menu-icon {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff8f2;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .book-btn {
    margin-left: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =========================================================
   PAGE TITLE
========================================================= */

.preisliste-title {
  margin-top: 3%;
  margin-bottom: 4rem;
  font-size: 4rem;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  text-align: center;
  color: #560f0f;
}

@media (max-width: 425px) {

  .preisliste-title {
    margin-top: 10%;
  }
}


/* =========================================================
   PRICE SECTIONS
========================================================= */

.price-section {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 6rem auto;
}

.price-section h2 {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: #560f0f;
  text-align: left;
}


/* =========================================================
   PRICE TABLE
========================================================= */

.price-table {
  width: 100%;
  margin: 0 auto 4rem auto;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.price-table th {
  background-color: #decfc5;
  color: #fff;
  font-weight: 600;
}


/* =========================================================
   TABLE COLUMNS
========================================================= */

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 55%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 20%;
  text-align: center;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 25%;
  text-align: right;
}


/* =========================================================
   TABLE DESCRIPTIONS
========================================================= */

.price-table .description {
  display: block;
  font-size: 0.8rem;
  color: #555;
  font-style: italic;
  margin-top: 0.3rem;
}


/* =========================================================
   PRICE AMOUNTS
========================================================= */

.price-table td .price-amount {
  font-size: 1rem;
  line-height: 1.2;
}

.price-table td .small-text {
  font-size: 0.5rem;
  line-height: 1.2;
  margin-top: 0.1rem;
}


/* =========================================================
   NOTES
========================================================= */

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: -1rem;
  margin-bottom: 2rem;
  margin-left: 0.75rem;
}

.small-text {
  font-size: 0.85rem;
  color: #560f0f;
  font-style: italic;
}


/* =========================================================
   RESPONSIVE - 1024PX
========================================================= */

@media (max-width: 1024px) {

  body {
    padding: 7rem 6%;
  }

  .price-section {
    width: 90%;
  }

  .price-table {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    font-size: 0.95rem;
    padding: 0.8rem 0.75rem;
  }

  .price-table .description {
    font-size: 0.75rem;
  }

  .price-section h2 {
    font-size: 2.2rem;
  }

  .preisliste-title {
    font-size: 3.2rem;
  }
}


/* =========================================================
   RESPONSIVE - 768PX
========================================================= */

@media (max-width: 768px) {

  body {
    padding: 7rem 4%;
  }

  .price-section {
    width: 100%;
  }

  .price-table {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .price-table .description {
    font-size: 0.7rem;
  }

  .price-section h2 {
    font-size: 1.8rem;
  }

  .preisliste-title {
    font-size: 2.5rem;
  }
}


/* =========================================================
   RESPONSIVE - 480PX
========================================================= */

@media (max-width: 480px) {

  body {
    padding: 6rem 3%;
  }

  .price-section {
    width: 100%;
  }

  .price-table {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    font-size: 0.75rem;
    padding: 0.5rem;
  }

  .price-table .description {
    font-size: 0.65rem;
  }

  .price-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .preisliste-title {
    font-size: 2rem;
  }

  .note {
    font-size: 0.75rem;
  }
}


/* =========================================================
   RESPONSIVE - 425PX
========================================================= */

@media (max-width: 425px) {

  .small-text {
    font-size: 0.4rem;
    line-height: 0.8rem;
    display: inline-block;
    margin-top: -0.2rem;
  }

  .price-table td .price-amount {
    font-size: 0.75rem;
  }

  .price-table td .small-text {
    font-size: 0.4rem;
    line-height: 1;
    margin-top: 0.05rem;
  }
}


/* =========================================================
   RESPONSIVE - 375PX
========================================================= */

@media (max-width: 375px) {

  .small-text {
    font-size: 0.2rem;
  }
}