/* =========================================
   RESPONSIVE
========================================= */

/* =========================================
   900px
========================================= */
/* Hero */
@media (max-width: 900px) {
  .hero-header {
    flex-direction: column-reverse;
    padding: 45px 24px;
    gap: 35px;
    min-height: auto;
  }

  .hero-text-box {
    width: 100%;
    padding: 35px 28px;
  }

  .hero-text-box p {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-text-box h2 {
    font-size: 36px;
  }

  .hero-signature {
    width: 140px;
     margin-top: 20px;
    margin-bottom: -10px;
  }

  .hero-right {
    width: 100%;
    flex-direction: row;
    text-align: center;
  }

  .hero-right .logo {
    width: 260px;
    max-width: 85%;
  }

  .hero-right .header-text {
  
    width: auto !important;
    max-width: 220px;
    margin-left: -76px;
    text-align: left;
  }

/* Navigation */
 .intro-inner {
        flex-direction: column;
        align-items: center;
    }

    .intro-box {
        max-width: 100%;
        min-width: unset;
        height: auto;
    }

    .text-box p {
        max-width: 100%;
    }

/* Contact */
 .contact-header h2 {
    font-size: 38px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-column {
    border-left: none;
    padding-left: 0;
  }

  .schedule-days {
    flex-direction: column;
  }


/* Open House */


/* Video */
 .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  }

/* =========================================
   768px
========================================= */

/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 768px) {

  .top-nav .nav-links .mobile-nav-cta {
  margin-top: 30px;
  padding: 18px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: #d6aa18;
  color: #111;

  border: 1px solid #d6aa18;
  border-radius: 8px;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-decoration: none;
}

.top-nav .nav-links .mobile-nav-cta::after {
  display: none;
}

.mobile-nav-cta .cta-arrow {
  font-size: 22px;
}

  .announcement-bar {
    height: auto;

    padding: 12px 16px;

    flex-direction: column;
    gap: 3px;

    text-align: center;

    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 1px;
  }


  /* =====================================
     RED MOBILE NAVBAR
  ===================================== */

  .top-nav {
    min-height: 120px;
    padding: 16px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(
      110deg,
      #9f0000,
      #db0202,
      #b70000
    );

    border-bottom: none;
  }


  .nav-logo img {
    width: 90px;
  }


  .menu-toggle {
    display: flex;

    position: relative;
    z-index: 1100;
  }


  /* =====================================
     MOBILE MENU OVERLAY
  ===================================== */

  .nav-links {
    display: none;
    transition:
  opacity 1.3s ease,
  transform 1.3s ease,
  visibility 1.3s ease;
  }


.nav-links {
  position: fixed;
  inset: 0;
  z-index: 1000;

  /* Viktigt: INTE display:none */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  gap: 0;
  padding: 30px 28px 50px;

  background:
    radial-gradient(
      circle at top,
      rgba(120, 0, 0, 0.28),
      transparent 35%
    ),
    rgba(8, 8, 8, 0.98);

  overflow-y: auto;

  /* Menyn börjar ovanför skärmen */
  transform: translateY(-100%);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.75s ease-out,
    opacity 0.45s ease-out,
    visibility 0s linear 0.75s;
}


/* När burgermenyn öppnas */
.top-nav.active .nav-links {
  transform: translateY(0);

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    transform 0.75s ease-out,
    opacity 0.45s ease-out,
    visibility 0s;
}

  /* MENU LINKS */

  .top-nav.active .nav-links a {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 21px 5px;

    margin: 0;

    background: transparent;

    border-radius: 0;

    border-bottom:
      1px solid rgba(214, 170, 24, 0.55);

    color: white;

    font-size: 20px;
    font-weight: 500;

    text-align: left;

    transform: none;
    box-shadow: none;
  }


  .top-nav.active .nav-links a::after {
    content: "→";

    position: static;

    width: auto;
    height: auto;

    color: var(--color-gold);

    background: none;

    font-size: 26px;
  }


  .top-nav.active .nav-links a:hover {
    color: var(--color-gold);

    padding-left: 10px;

    background:
      rgba(214, 170, 24, 0.04);
  }


  /* Dölj desktop-detaljer */

  .nav-socials,
  .nav-cta {
    display: none;
  }

@media (max-width: 768px) {

  /* =====================================
     DISCOVER I MOBILMENYN
  ===================================== */

  .nav-discover {
    width: 100%;

    display: block;
  }


  /* själva Discover huvudknappen */

  .discover-nav-link {
    width: 100%;

    display: flex !important;

    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
  }


  /* =====================================
     UNDERRADEN BLIR VERTIKAL
  ===================================== */

  .discover-dropdown {
    position: static;

    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: stretch;

    padding: 0;

    background:
      rgba(85, 5, 5, 0.55);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border: 0;

    box-shadow: none;

    /* stängd */
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: none;

    transition:
      max-height 0.45s ease,
      opacity 0.3s ease;
  }


  /* =====================================
     ÖPPEN
  ===================================== */

  .nav-discover.is-open .discover-dropdown {
    max-height: 450px;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: none;
  }


  /* =====================================
     SUBMENY-KNAPPAR
  ===================================== */

  .discover-dropdown a {
    width: 100%;

    min-height: 0;

    display: flex !important;

    align-items: center;
    justify-content: flex-start;

    padding:
      14px 18px
      14px 34px !important;

    box-sizing: border-box;

    text-align: left;

    font-size: 0.78rem !important;

    letter-spacing: 1px !important;

    color:
      rgba(255, 255, 255, 0.80) !important;

    background:
      rgba(0, 0, 0, 0.08) !important;

    border: 0 !important;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.06) !important;
  }


  .discover-dropdown a:hover {
    color: #d6aa18 !important;

    background:
      rgba(0, 0, 0, 0.18) !important;
  }


  /* sista länken behöver ingen linje */

  .discover-dropdown a:last-child {
    border-bottom: 0 !important;
  }


  /* pil */

  .discover-arrow {
    margin-left: 8px;
  }


  .nav-discover.is-open
  .discover-arrow {
    transform: rotate(180deg);
  }

}

 /* =====================================
     INTRO
  ===================================== */
  .intro-inner {
    flex-direction: column;
    gap: 25px; 
  }

  .intro-box {
    width: 90%;
    max-width: 100%;
    min-width: unset;
    height: auto;
  }

  .text-box {
    padding: 60px;
  }

  .text-box h2 {
    font-size: 34px;
  }

  .text-box p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

  .from-left {
    transform: translateX(-80px);
  }

  .from-right {
    transform: translateX(80px);
  }


  /* =====================================
     HEADER
  ===================================== */

  header {
    height: auto;
    min-height: 420px;
    padding: 60px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    text-align: center;
    overflow: hidden;
    font-size: 15px;
  }

  .logo {
    width: 180px;
    animation: slideInMobile 1.5s ease-out forwards;
  }

  .header-text {
    margin-left: 0;
    text-align: center;
  }

  .header-text h1 {
    font-size: 42px;
  }

  .header-text p {
    font-size: 25px;
    margin-top: -10px;
  }


  /* =====================================
     SOCIAL ICONS
  ===================================== */

  .social-icons a {
    font-size: 24px;
    margin: 0 8px;
  }


  /* =====================================
     LANGUAGE SWITCHER
  ===================================== */

  .hero-header .language-switcher {
    top: 14px;
    right: 14px;
    gap: 7px;
  }

  .hero-header .language-btn {
    width: 30px;
    height: 30px;
  }

  .hero-header .language-btn img {
    width: 22px;
    height: 22px;
  }

  .language-btn {
    padding: 6px;
  }

  .language-btn span {
    display: none;
  }

  .language-btn img {
    width: 29px;
    height: 29px;
  }


  /* =====================================
     REVIEWS
  ===================================== */

  .reviews-section {
    padding: 40px 20px;
  }

  .reviews-section h2 {
    font-size: 26px;
  }

  .reviews-title-line {
    margin-bottom: 23px;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 8px 20px 22px;
  }

  .review-card p,
  .review-text {
    max-width: 330px;
    font-size: 14px;
  }

  .leave-review-button {
    padding: 11px 19px;
    font-size: 12px;
  }


  /* =====================================
     WHY A MI TALLA
  ===================================== */

  .why-amitalla {
    padding: 55px 18px;
  }

  .founder-wrap {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .founder-img {
    width: 260px;
  }

  .speech-bubble {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 28px 26px;
    text-align: left;
  }

  .speech-bubble::before {
    display: none;
  }

  .speech-bubble p {
    font-size: 17px;
    line-height: 1.55;
  }


  /* =====================================
     OPEN HOUSE
  ===================================== */

  .open-house-section {
    padding: 55px 18px;
  }

  .open-house-card {
    flex-direction: column;
    padding: 35px 24px;
    text-align: center;
  }

  .open-house-logo {
    width: 150px;
  }

  .open-house-kicker {
    font-size: 22px;
  }

  .open-house-content h2 {
    font-size: 52px;
  }

  .open-house-date {
    font-size: 20px;
  }

  .open-house-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .open-house-points div,
  .open-house-points div:first-child {
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid rgba(214,170,24,0.35);
    padding-bottom: 15px;
  }

  .open-house-alert {
    flex-direction: column;
  }

  .autumn-signup-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 22px;
  }

  .autumn-signup-box h3 {
    font-size: 30px;
  }

  .autumn-button {
    justify-content: center;
    white-space: normal;
  }


  /* =====================================
     DISCOUNTS
  ===================================== */

  .discount-box {
    margin: 30px 18px 0;
    padding: 25px 20px;
  }

  .discount-content {
    flex-direction: column;
    gap: 20px;
  }

  .discount-divider {
    width: 80%;
    height: 1px;
  }

  .discount-box h3 {
    font-size: 26px;
  }

  .discount-offer p span {
    font-size: 42px;
  }

  .partner-discount {
    font-size: 15px;
  }
}

/* =========================================
   700px
========================================= */

/* CTA */
 @media (max-width: 700px) {
  .cta-section {
    padding: 50px 14px 55px;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-subtitle {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .term-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .term-card {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .term-card-title h3 {
    font-size: 22px;
  }

  .term-period {
    font-size: 16px;
  }
}


/* =========================================
   600px
========================================= */

/* Pricing */
@media (max-width: 600px) {

  .pricing-section {
    overflow-x: hidden;
    padding: 35px 6px;
  }

  .pricing-section h2 {
    font-size: 34px;
    padding-left: 0;
    text-align: center;
  }

  .pricing-day {
  color: #d6aa18;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin: 50px auto 35px;
  text-align: center;
  position: relative;
  margin-bottom: 5px;
  margin-top: 6px;
}

.pricing-day::before,
.pricing-day::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background: rgba(214, 170, 24, 0.75);
  vertical-align: middle;
  margin: 0 28px;
}

  .pricing-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: center;
    margin: 0 auto 28px auto;
  }

  .pricing-box {
    width: calc((100% - 12px) / 3);
    min-height: 245px;
    padding: 8px 7px;
    border-radius: 12px;
    flex-shrink: 1;
    display: flex;
flex-direction: column;
  }

  .pricing-box::before {
    background-size: 120px;
  }

  .pricing-box h3 {
    font-size: 13px;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .pricing-box .level {
    font-size: 10.5px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .pricing-box p {
    font-size: 10px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .pricing-box span {
    font-size: 12px;
    
  }

}
