/* ==================== CSS VARIABLES ==================== */
:root {
  --bg: #fff9eb;
  --pink: #bd2059;
  --green: #00a69c;
  --yellow: #fddb8a;
  --blue: #00a8df;
  --orange: #f05a3b;
  --purple: #84246f;
  --purple2: #982880;
  --deep: #6c235a;
  --font-head: "Funnel Display", sans-serif;
  --font-body: "Lexend Deca", sans-serif;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--pink);
}

/* ==================== SECTION ==================== */
.section {
  padding: 80px 60px;
}

/* ==================== BUTTONS ==================== */
button img,
.outline-btn img,
.green-btn img {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--pink);
  border-radius: 50px;
  color: var(--pink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  white-space: nowrap;
}
.outline-btn:hover {
  background: rgba(189, 32, 89, 0.06);
}

.green-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

/* ==================== HERO ==================== */
/* .hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start !important;
  justify-content: flex-start;
  padding: 10px 0 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin-left: auto !important;
  margin-right: auto;
  gap: 120px;
} */
.hero {
  display: flex;
  align-items: center !important; /* FIX: center vertically */
  justify-content: space-between;
  gap: 30px; /* FIX: reduce spacing */
  padding: 0 0 0 0;
/*   padding-top: 0; */
  
/*   overflow: hidden;
  width: 100%;
  max-width: 1440px; */
  margin-left: auto !important;
  margin-right: auto;
}

/* ---- Hero Copy (left column) ---- */
.hero-copy {
  flex: 0 0 38% !important;
  width: 38% !important;
  padding:0 10px 40px 48px;
  text-align: left !important;
  justify-content: flex-start;
  margin-top: -80px;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 62px;
  line-height: 74px;
  letter-spacing: -1.28px;
  color: var(--pink);
  margin-bottom: 24px;
 
}

.hero-copy p {
  font-size: 18px;
  line-height: 30px;
  color: var(--pink);
  margin-bottom: 36px;
  font-weight: 300;
}

/* ---- Hero Actions (buttons row) ---- */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* ---- Hero Image (right column) ---- */
.hero-image-wrap {
  flex:  0 0 45%; !important;
  width: 45% !important;
/*   aspect-ratio: 4 / 3; */
  max-height:  650px;
  margin-left: 10px;
  border-radius: 30px;
  overflow: hidden;
  align-self: flex-start;
}
/* .hero-image-wrap {
  flex: 0 0 45%;
  width: 45%;
  max-height: 650px; /* FIX: reduce height */
/*   border-radius: 24px !important; smoother like design */
} */

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  border-radius: 20px; 
}


/* ---- Visibility helpers ---- */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

/* ==================== LARGE DESKTOP (≥1440px) ==================== */
@media (min-width: 1440px) {
  .hero-copy {
    flex: 0 0 40% !important;
    width: 40%;
    padding-left: 80px;
  }

  .hero-copy h1 {
    font-size: 68px;
    line-height: 76px;
  }

  .hero-image-wrap {
    flex: 0 0 60% !important;
    width: 60%;
    max-height: 800px;
  }
}

/* ==================== MEDIUM DESKTOP (1281px–1439px) ==================== */
@media (min-width: 1281px) and (max-width: 1439px) {
  .hero-copy {
    flex: 0 0 37%;
    width: 37%;
  }

  .hero-image-wrap {
    flex: 0 0 63%;
    width: 63%;
    max-height: 800px;
  }
}

/* ==================== SMALL DESKTOP (1025px–1280px) ==================== */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-copy {
    flex: 0 0 40%;
    width: 40%;
    padding-left: 40px;
  }

  .hero-copy h1 {
    font-size: 54px;
    line-height: 62px;
  }

  .hero-image-wrap {
    flex: 0 0 60%;
    width: 60%;
    max-height: 700px;
  }
}

/* ==================== TABLET LANDSCAPE (769px–1024px) ==================== */
/* @media (min-width: 769px) and (max-width: 1024px) {
  .hero-copy {
    flex: 0 0 38%;
    width: 38%;
    padding: 32px 16px 32px 28px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .hero-actions .outline-btn,
  .hero-actions .green-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero-image-wrap {
    flex: 0 0 62%;
    width: 62%;
    max-height: 540px;
    border-radius: 16px 0 0 16px;
  }
}
 */
 @media (max-width: 1024px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 40px 0 0 0 !important;
    gap: 16px !important;
  }

  .hero-copy {
    width: 100% !important;
    text-align: center !important;
    padding: 0 16px !important;
    margin-top: 0 !important;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrap {
    width: 90% !important;
    margin: 0 auto;
    border-radius: 20px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

/* ==================== MOBILE (≤480px) ==================== */
@media (max-width: 480px) {

  .section {
    padding: 32px 16px;
       }

  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 0 0 0 !important;
    gap: 16px !important;
  }

  .hero-copy {
    width: 100% !important;
    text-align: center !important;
    padding: 0 16px !important;
    margin-top: 0 !important;
    padding-top: 20px !important;
  }

  .hero-copy h1 {
    font-size: 40px !important;
    line-height: 48px !important;
    font-weight: 700 !important;
    max-width: 400px !important;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    margin: 0 auto 12px !important;
     margin-top: 20px !important; 
  }

  .hero-copy p {
    font-size: 17px !important;
    line-height: 27px !important;
    max-width: 280px !important;
    margin: 0 auto 20px !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .outline-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
    border: 2px solid var(--pink, #bd2059) !important;
    background: transparent !important;
    white-space: nowrap !important;
  }

  .green-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
    background: var(--green, #00a69c) !important;
    border: none !important;
    white-space: nowrap !important;
  }

  .hero-image-wrap {
    width: auto !important;
    max-width: 90% !important;
    margin: 8px auto !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
    aspect-ratio: unset !important;
  }

  .hero-image {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 16px !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}