/* Font Face Declarations - woff2 format */
@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueUltraLight.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueUltraLightItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueThin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueThinItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueLightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueRoman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueMediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueHeavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueHeavyItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBlack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f4f1e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.header {
  background-color: #599d36;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.header-text {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  font-size: 38px;
  color: white;
  margin: 0;
  margin-left: auto;
  padding: 6px 0 2px;
  line-height: 1.2;
  text-align: center;
}

.header-logo {
  height: 80px;
  width: auto;
  margin-right: 20px;
  align-self: center;
}

/* Tagline Section */
.tagline {
  background-color: #f4f1e0;
  padding: 40px 40px 0px 40px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tagline-text {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  font-size: 72px;
  color: #000000;
  margin: 0;
}

/* Main Content */
.main-content {
  padding: 0px 40px 40px 40px;
  flex: 1;
  display: flex;
  align-items: center;
}

.grid-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cell-text {
  color: #000000;
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Pill Button Styles */
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  transition: opacity 0.3s ease;
  min-width: 150px;
}

.pill-button:hover {
  opacity: 0.85;
}

.pill-button-pink {
  background-color: #d20059;
}

.pill-button-orange {
  background-color: #fa4d08;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-text {
    font-size: 24px;
  }

  .header-logo {
    height: 60px;
  }

  .grid-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
  }

  .header-text {
    font-size: 20px;
  }

  .header-logo {
    height: 50px;
    margin-right: 0;
  }

  .grid-container {
    flex-direction: column;
    gap: 50px;
  }

  .cell-text {
    font-size: 18px;
  }
}
