/* Import Fonts */
/* Import Fonts - Removed, using global css-variables.liquid */

/* CSS Variables */
:root {
  --color-background: #421901;
  --color-hero-bg-1: #F4E2BC;
  --color-hero-bg-2: #FEFBE6;
  --color-text-primary: #421901;
  --color-text-secondary: #9E6A3A;
  --font-title: var(--font-heading);
  --font-body: 'Montserrat', sans-serif;
}

/* Base Mobile Styles (Mobile First) */
.hero-section {
  background: radial-gradient(circle at 50% 100%, var(--color-hero-bg-1) 0%, var(--color-hero-bg-2) 60%);
  padding: 30px 15px;
  padding-top: 120px;
  padding-bottom: 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  /* Create positioning context for image */
}



.hero-content {
  display: contents;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
  align-items: flex-start;
  text-align: left;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  margin: 0;
}

.highlight-text {
  color: var(--color-text-secondary);
}

.highlight-text-alt {
  color: var(--color-text-secondary);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-weight-text);
  line-height: 1.6;
  color: var(--color-text-primary);
  max-width: 100%;
  margin: 0;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-secondary) 100%);
  color: var(--color-hero-bg-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-weight-button);
  text-decoration: none;
  border-radius: 50px;
  width: fit-content;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 10px rgba(66, 25, 1, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 25, 1, 0.3);
}

.hero-partnership {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 20px;
  order: 3;
  width: 100%;
}

.partnership-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--font-weight-button);
  color: var(--color-text-primary);
}

.hero-partnership img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-image {
  position: relative;
  max-width: 300px;
  margin: 40px auto 0;
  width: 100%;
  order: 2;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 480px Breakpoint - Small Mobile Landscape */
@media (min-width: 480px) {

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .partnership-text {
    font-size: 14px;
  }

  .hero-partnership img {
    width: 50px;
    height: 50px;
  }

  .hero-image {
    max-width: 350px;
  }
}

/* 768px Breakpoint - Tablet Portrait */
@media (min-width: 768px) {
  .hero-section {
    padding: 40px 30px;
    padding-top: 100px;
    border-radius: var(--radius-xl);
  }

  .hero-text {
    gap: 25px;
    align-items: flex-start;
    /* Left align */
    text-align: left;
    /* Left align */
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 17px;
    max-width: 600px;
    margin: 0;
    /* Remove auto margin */
  }

  .cta-button {
    padding: 15px 36px;
    font-size: 15px;
    width: fit-content;
    margin: 0;
    /* Remove auto margin */
  }

  .hero-image {
    position: relative;
    /* Keep relative for stack */
    max-width: 450px;
    bottom: auto;
    right: auto;
    margin: 40px auto 0;
    /* Add spacing */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align container items */
  }

  .hero-partnership {
    justify-content: flex-start;
    /* Left align */
    margin-top: 30px;
    /* Keep at bottom */
  }
}

/* 1024px Breakpoint - Tablet Landscape / Small Desktop */
@media (min-width: 1024px) {
  .hero-section {
    padding: 50px 40px;
    padding-top: 120px;
    border-radius: var(--radius-2xl);
  }

  .hero-content {
    flex-direction: row;
    /* Switch to row */
    align-items: flex-start;
    text-align: left;
  }

  .hero-text {
    gap: 28px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    font-size: 17px;
    margin: 0;
  }

  .cta-button {
    padding: 16px 38px;
    font-size: 16px;
    margin: 0;
  }

  .hero-image {
    position: absolute;
    max-width: 500px;
    bottom: 0;
    right: 50px;
    margin: 0;
  }

  .hero-partnership {
    justify-content: flex-start;
    margin-top: 40px;
  }
}

/* 1440px Breakpoint - Large Desktop */
@media (min-width: 1440px) {
  .hero-section {
    border-radius: var(--radius-3xl);
  }

  .hero-text {
    gap: 30px;
    max-width: 1000px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-description {
    font-size: 18px;
  }

  .cta-button {
    padding: 16px 40px;
  }

  .hero-image {
    position: absolute;
    max-width: 550px;
    bottom: 10px;
    right: 60px;
    margin: 0;
  }
}