/* ========================= */
/* MOBILE + TABLET (UP TO 1024px) */
/* ========================= */

@media (max-width: 1024px) {
  /* ========================= */
  /* GLOBAL */
  /* ========================= */

  body {
    padding: 0;
  }

  section {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .logo img {
    height: 100px;
  }

  /* ========================= */
  /* NAV (BASE) */
  /* ========================= */

  .nav {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px 10px;
    text-align: center;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-center {
    padding: 10px 0;
  }

  .nav-center a {
    font-size: 18px;
    letter-spacing: 2px;
  }

  /* ========================= */
  /* HOME */
  /* ========================= */

  .home .hero {
    padding: 40px 15px 10px;
  }

  .home .hero h1 {
    font-size: 26px;
  }

  .home .names {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .home .hero-image img {
    height: 300px;
  }

  .home .story {
    padding: 10px 15px;
  }

  .home .story p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ========================= */
  /* COLLECTION */
  /* ========================= */

  .collection-hero img {
    height: 300px;
  }

  .collection-intro {
    margin: 40px auto;
  }

  .collection-intro p {
    font-size: 14px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .collection-grid img {
    height: 350px;
  }

  /* ========================= */
  /* QUOTE */
  /* ========================= */

  .quote {
    margin: 40px auto;
    font-size: 18px;
    padding: 0 15px;
  }

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

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

  .footer i {
    font-size: 28px;
  }

  /* ========================= */
  /* CUSTOM PAGE */
  /* ========================= */

  .custom-image-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-image img {
    width: 100%;
    max-width: 300px;
  }

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

  /* ========================= */
  /* UNDERNEATH PAGE */
  /* ========================= */

  .top-story {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 🔥 FIX: story rows alltid text → bild */
  .story-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .story-row .text {
    order: 1;
  }

  .story-row img {
    order: 2;
  }

  .story-row.reverse {
    flex-direction: column;
  }

  /* ========================= */
  /* BOOKING */
  /* ========================= */

  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .table-wrapper {
    overflow-x: auto;
  }
}

/* ========================= */
/* IPAD NAV (PREMIUM) */
/* ========================= */

@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 20px 30px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-center a {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* ========================= */
/* MOBILE ONLY (HAMBURGER) */
/* ========================= */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 2000;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
    background: #1f1f1f;
  }

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

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav.active .nav-left,
  .nav.active .nav-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
}
