/*
Theme Name: Aralyns Boutique
*/

 :root {
      --pink: #f4a7b9;
      --pink-light: #fde8ef;
      --pink-deep: #e8829a;
      --blue: #a8d4e6;
      --blue-light: #ddf0f8;
      --blue-deep: #7bbdd6;
      --cream: #fffaf8;
      --white: #ffffff;
      --text-dark: #3a2a2a;
      --text-mid: #7a5a5a;
      --text-light: #b09090;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

a{
	text-decoration: none;
	color: #000000;
}

    /* ── CANVAS BACKGROUND ── */
    #bgCanvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ── CURSOR GLOW ── */
    .cursor-glow {
      position: fixed;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,167,185,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease;
    }

    /* ── MARQUEE ── */
    .marquee-strip {
      position: relative;
      z-index: 10;
      background: linear-gradient(90deg, var(--pink-deep), var(--blue-deep), var(--pink-deep));
      background-size: 200% 100%;
      animation: gradientShift 4s ease infinite;
      padding: 10px 0;
      margin-top: 70px;
      overflow: hidden;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .marquee-inner {
      display: flex;
      animation: marqueeMove 25s linear infinite;
      white-space: nowrap;
    }

    .marquee-inner span {
      font-size: 0.78rem;
      font-weight: 700;
      color: white;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0 2rem;
      opacity: 0.95;
    }

    @keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


    /* About */

     :root {
      --pink: #f4b8c8;
      --pink-light: #fde8ef;
      --pink-dark: #e8799a;
      --blue: #b8d8f4;
      --blue-light: #e8f4fd;
      --blue-dark: #6aaed6;
      --cream: #fdf6f0;
      --white: #ffffff;
      --text: #3a2a2a;
      --text-light: #7a6a6a;
      --gold: #d4a853;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

    #bgCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.3; }
    .cursor-glow { position: fixed; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(244,184,200,0.12) 0%, transparent 70%); pointer-events: none; z-index: 1; transform: translate(-50%,-50%); transition: all 0.1s ease; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; }
    nav.scrolled { background: rgba(253,246,240,0.92); backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(244,184,200,0.2); padding: 12px 40px; }
    .nav-logo { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: var(--pink-dark); text-decoration: none; display: flex; align-items: center; gap: 8px; }
    .nav-logo span { color: var(--text); }
    .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--text); font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; position: relative; padding-bottom: 4px; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--pink-dark); transition: width 0.3s ease; border-radius: 2px; }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .cart-btn { background: var(--pink-dark); color: white; border: none; border-radius: 50px; padding: 10px 22px; font-family: 'Lato', sans-serif; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
    .cart-btn:hover { background: var(--pink); transform: translateY(-2px); }
    .cart-count { background: white; color: var(--pink-dark); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text); text-decoration: none; }
    .mobile-close { position: absolute; top: 20px; right: 30px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text); }

        /* FOOTER */
    footer { position: relative; z-index: 2; background: var(--text); color: rgba(255,255,255,0.8); padding: 60px 40px 30px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
    .footer-brand .logo { font-family: 'Dancing Script', cursive; font-size: 2rem; color: var(--pink); display: block; margin-bottom: 14px; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; text-decoration: none; color: white; }
    .social-btn:hover { background: var(--pink-dark); transform: translateY(-3px); }
    .footer-col h4 { color: white; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.3s; }
    .footer-col ul li a:hover { color: var(--pink); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
    .footer-bottom a { color: var(--pink); text-decoration: none; }

    /* CART */
    .cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-sidebar { position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw; height: 100vh; background: white; z-index: 201; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.15); }
    .cart-sidebar.open { transform: translateX(0); }
    .cart-header { padding: 28px; border-bottom: 1px solid var(--pink-light); display: flex; align-items: center; justify-content: space-between; }
    .cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
    .cart-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; }
    .cart-close:hover { background: var(--pink-light); }
    .cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }
    .cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }
    .cart-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
    .cart-footer { padding: 24px 28px; border-top: 1px solid var(--pink-light); }
    .cart-total { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.9rem; }
    .cart-total.grand { font-size: 1.1rem; font-weight: 700; padding-top: 12px; border-top: 1px solid var(--pink-light); margin-top: 6px; }
    .cart-total.grand span:last-child { color: var(--pink-dark); }
    .checkout-btn { width: 100%; background: linear-gradient(135deg, var(--pink-dark), #c0607a); color: white; border: none; border-radius: 50px; padding: 16px; font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; margin-top: 18px; transition: all 0.3s; }
    .checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,121,154,0.4); }
    .cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 16px; background: var(--cream); border-radius: 16px; }
        .cart-item-img {
      width: 70px; height: 70px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      flex-shrink: 0;
    }

    .cart-item-info { flex: 1; }

    .cart-item-name {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .cart-item-price {
      font-size: 0.9rem;
      color: var(--pink-deep);
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .qty-control {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qty-btn {
      width: 26px; height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(244,167,185,0.4);
      background: white;
      cursor: pointer;
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      color: var(--text-dark);
    }

    .qty-btn:hover { background: var(--pink-light); }

    .qty-num {
      font-size: 0.9rem;
      font-weight: 700;
      min-width: 20px;
      text-align: center;
    }

    .remove-item {
      color: var(--text-light);
      cursor: pointer;
      font-size: 18px;
      transition: color 0.2s;
      background: none;
      border: none;
      padding: 0;
    }

    .remove-item:hover { color: #e05a5a; }

    .cart-footer {
      padding: 1.5rem;
      border-top: 1px solid rgba(244,167,185,0.15);
      background: var(--cream);
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-mid);
    }

    .cart-total-row.big {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 1.2rem;
    }

    .close-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.1);
      background: white;
      cursor: pointer;
      font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }

    .close-btn:hover { background: var(--pink-light); }

  /* ── CHECKOUT MODAL ── */
    .checkout-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      backdrop-filter: blur(6px);
    }

    .checkout-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .checkout-modal {
      background: white;
      border-radius: 28px;
      width: 100%;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 2.5rem;
      transform: scale(0.9);
      transition: transform 0.3s ease;
      box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    }

    .checkout-overlay.open .checkout-modal {
      transform: scale(1);
    }

    .checkout-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .checkout-sub {
      font-size: 0.85rem;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 2rem;
    }

    .form-section-title {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--pink-deep);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--pink-light);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-row.single { grid-template-columns: 1fr; }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-group label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-mid);
      letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 10px 14px;
      border: 1.5px solid rgba(244,167,185,0.25);
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      color: var(--text-dark);
      background: white;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--pink);
    }

    .order-summary-box {
      background: var(--pink-light);
      border-radius: 16px;
      padding: 1.2rem;
      margin: 1.5rem 0;
    }

    .order-summary-box h4 {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--pink-deep);
      margin-bottom: 1rem;
    }

    .summary-item {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--text-mid);
      margin-bottom: 0.5rem;
    }

    .summary-total {
      display: flex;
      justify-content: space-between;
      font-size: 1rem;
      font-weight: 800;
      color: var(--text-dark);
      padding-top: 0.8rem;
      border-top: 1px solid rgba(244,167,185,0.3);
    }

    .payment-note {
      background: rgba(168,212,230,0.2);
      border: 1px solid rgba(168,212,230,0.4);
      border-radius: 12px;
      padding: 1rem;
      font-size: 0.82rem;
      color: var(--blue-deep);
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .place-order-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--pink-deep), #d4607a);
      color: white;
      border: none;
      border-radius: 14px;
      padding: 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(232,130,154,0.4);
      transition: all 0.3s;
    }

    .place-order-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(232,130,154,0.5);
    }

    /* Order success */
    .order-success {
      text-align: center;
      padding: 2rem 1rem;
      display: none;
    }

    .success-icon {
      font-size: 5rem;
      margin-bottom: 1.5rem;
      animation: successBounce 0.6s ease;
    }

    @keyframes successBounce {
      0% { transform: scale(0); }
      60% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    .order-success h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .order-success p {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 340px;
      margin: 0 auto 2rem;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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


  
  
 @media (max-width: 900px){
  .cart-btn{
    display: none;
  }
  .nav-links{
    display: none;
  }
 }

 /* HAMBURGER */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 3px;
  transition: 0.3s;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



.mobile-menu a {
  color: white;
  text-decoration: none;
  margin: 15px 0;
  font-size: 18px;
}

.mobile-menu.active {
  right: 0;
}

/* CLOSE BUTTON */
.mobile-close {
  align-self: flex-end;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

 /* ══════════════════════════════
       MOBILE MENU — FIXED
    ══════════════════════════════ */
    .mobile-menu {
      display: none; /* hidden by default */
      position: fixed;
      top: 58px; left: 0; right: 0;
      background: rgba(253,246,240,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      padding: 1rem 1.5rem 1.5rem;
      flex-direction: column;
      gap: 0.3rem;
      box-shadow: 0 10px 30px rgba(244,167,185,0.15);
      border-bottom: 2px solid rgba(244,167,185,0.15);
      /* Slide-down animation */
      animation: slideDown 0.25s ease forwards;
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .mobile-menu.open {
      display: flex;
    }
    .mobile-menu a {
      text-decoration: none;
      /* padding: 0.85rem 1.2rem; */
      border-radius: 14px;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-dark);
      transition: background 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .mobile-menu a:hover {
      background: var(--pink-light);
      transform: translateX(4px);
    }
    .mobile-menu-divider {
      height: 1px;
      background: rgba(244,167,185,0.2);
      margin: 0.4rem 0;
    }
    .mobile-cart-btn {
      background: linear-gradient(135deg, var(--pink-deep), #d4607a);
      color: white !important;
      border-radius: 14px !important;
      padding: 1rem 1.2rem !important;
      margin-top: 0.3rem;
      justify-content: center !important;
      font-weight: 700 !important;
      box-shadow: 0 6px 18px rgba(232,130,154,0.35);
    }
    .mobile-cart-btn:hover {
      background: linear-gradient(135deg, #d4607a, var(--pink-deep)) !important;
      transform: none !important;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }
      .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
      .hero-desc { max-width: 100%; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { height: 350px; }
      .hero-card { width: 280px; height: 350px; }
      .orbit-ring-1 { width: 300px; height: 300px; }
      .orbit-ring-2 { width: 360px; height: 360px; }
      .strawberry-main-card { width: 210px; }
      .float-card-1 { right: 10px; }
      .float-card-2 { left: 5px; }
      .float-card-3 { display: none; }
      .featured-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
      .featured-bg-circle { width: 280px; height: 280px; }
      .featured-strawberry-svg { width: 160px; height: 190px; }
      .featured-features { justify-items: center; }
      .featured-actions { justify-content: center; }
      .featured-desc { text-align: left; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 560px) {
      .products-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero { min-height: 80vh; }
    }

      /* ── HAMBURGER BUTTON ── */
    .nav-mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 8px;
      transition: background 0.2s;
      z-index: 1100;
      position: relative;
    }
    .nav-mobile-toggle:hover {
      background: var(--pink-light);
    }
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 24px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }
    /* Animated X state */
    .nav-mobile-toggle.is-open .hamburger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-mobile-toggle.is-open .hamburger span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-mobile-toggle.is-open .hamburger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

.swiper-wrapper{
	height: auto;
	max-width:1200px;
}


.swiper-slide {
  height: auto;
}
 

	    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }

      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }

      .hero-desc { max-width: 100%; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }

      .hero-visual { height: 350px; }
      .hero-card { width: 280px; height: 350px; }
      .orbit-ring-1 { width: 300px; height: 300px; }
      .orbit-ring-2 { width: 360px; height: 360px; }
      .strawberry-main-card { width: 210px; }
      .float-card-1 { right: -60px; }
      .float-card-2 { left: -50px; }
      .float-card-3 { display: none; }

      .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .featured-bg-circle { width: 280px; height: 280px; }
      .featured-strawberry-svg { width: 160px; height: 190px; }
      .featured-features { justify-items: center; }
      .featured-actions { justify-content: center; }
      .featured-desc { text-align: left; }

      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 560px) {
      .products-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero { min-height: 80vh; }
    }
