:root {
  --sand: #efe7d5;
  --cream: #f6efe3;
  --ink: #243027;
  --orange: #D95F31;
  --orange-600: #d4651f;
  --green: #2f5d46;
  --border: #dccfbc;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: "Lexend", sans-serif;
}

header {
  padding-bottom: 2rem;
}

/* Colors */
.bg-sand {
  background-color: var(--sand);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-ink {
  background-color: var(--ink);
}

.text-ink {
  color: var(--ink);
}

.text-cream {
  color: var(--cream);
}

.btn-orange {
  background-color: var(--orange);
  color: #fff;
  border: none;
}

.btn-orange:hover {
  background-color: var(--orange-600);
  color: #fff;
}

.link-ink {
  color: #D95F31;
  text-decoration: underline;
}

.link-ink:hover {
  text-decoration: underline;
}

.link-cream {
  color: var(--cream);
  opacity: .9;
}

.link-cream:hover {
  color: #fff;
  opacity: 1;
}

/* Spacing helpers */
.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.my-6 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Brand */
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.nav-link {
  color: black;
  font-weight: bold;
}

/* Hero */
.display-super {
  font-size: 14rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.display-subheading {
  font-size: 7rem;
  font-weight: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: black;
  padding-left: 7rem;
}

.hero-mark {
  width: clamp(44px, 7vw, 72px);
  height: clamp(44px, 7vw, 72px);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.hero-tagline {
  font-size: 2rem;
  padding-left: 15rem;
  letter-spacing: .12em;
  color: rgba(0, 0, 0, .65);
}

.hero-tagline b {
  color: var(--ink);
}

.hero-note {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  color: rgba(0, 0, 0, .85);
}

.hero-buttons {
  margin-top: 1rem;
}

.hero-buttons a {
  padding: 10px 50px;
}

/* UWS sub-section */
.hero-uws {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.uws-line {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: black;
}

.uws-address {
  color: black;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: 300;
}

/* Buttons */
.btn-outline-ink {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-hover-color: #fff;
}

/* Sections */
.section-title {
  font-weight: 800;
  letter-spacing: .02em;
}


.product-info-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-scroller {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1rem;
  gap: 20px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.product-card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-card a {
  width: 100%;
  background: #e6772e;
  border: none;
  color: white;
  padding: 5px;
}

.product-card .card-img-top {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Category list */

.categories-section .list-group-item {
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.categories-section p.fw-semibold {
  margin-bottom: 0;
  font-size: 2rem;
}

.categories-section .link-ink {
  color: #D95F31;
  text-decoration: underline;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Ribbon */
.ribbon {
  position: relative;
  height: 250px;
}

.ribbon-track {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  transform: translateY(-50%) rotate(-8deg);
  background: #C0E0CB;
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ribbon-track.ribbon-reverse {
  top: 50%;
  left: -10%;
  width: 120%;
  transform: translateY(-50%) rotate(10deg);
  background: var(--orange);
}

.ribbon-track span {
  display: inline-block;
  font-size: 3rem;
  padding: 20px;
  line-height: 1.2;
  animation: floatLeft 40s linear infinite;
}

.about-wrapper .about-box {
  width: 50%;
}

.about-wrapper {
  display: flex;
  gap: 5rem;
  align-items: center;
}

section#events .card {
  background: none;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
}

section#events .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
}

section#events .card-body .event-info-title {
  margin-right: auto;
}

section#events .events-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

section#events .card img {
  margin-right: 1rem;
  height: 100px;
  object-fit: cover;
}

section#events .card .btn,
.list-group .btn {
  background: #D95F31;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 20px;
}

.cta-loyalty {
  background: #EA9C25;
  /* height: 300px; */
  padding: 3rem;
  border-radius: 20px;
}

form.sign-up-form {
  position: relative;
}

form.sign-up-form input {
  padding: 20px;
}

form.sign-up-form button {
  position: absolute;
  right: 20px;
  top: 12px;
  background: #D95F31;
  border-radius: 20px;
  padding: 10px 30px;
  border: none;
}

.sign-up-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */

footer {
  display: flex;
  padding-top: 2rem;
}

footer .fw-semibold {
  color: #fff;
}

.footer-logo {
  margin: 0 auto;
  margin-top: 5rem;
  display: block;
}

footer .small {
  color: rgba(255, 255, 255, .85);
}

.footer-disclaimer a {
    color: inherit;
}
.footer-disclaimer {
    background: #EA9C25;
    padding: 20px;
    margin-top: 4rem;
    color: black;
    font-weight: 300;
}

/* Borders */
.border-bottom,
.border-top {
  border-color: var(--border) !important;
}


section.story-section {
  margin-top: 2rem;
}

.story-head {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 2rem;
}

.story-head h1 {
  font-weight: bold;
}

.story-cards {
  margin: 5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  padding: 30px;
  border-radius: 20px;
  color: white;
}

.story-card:nth-last-child(1) {
  color: black;
}

.story-card h4 {
  margin-bottom: 20px;
}

.story-card ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

.story-card ul li a {
  color: #395EBC;
}

.marquee-text {
  display: flex;
}

.marquee-text marquee {
  font-size: 2rem;
  font-weight: bold;
  color: black;
}

section.our-partners {
  display: flex;
  margin: 2rem 0;
}

section.our-partners h3 {
  margin-bottom: 2rem;
}

section.our-partners .partners {
  display: flex;
  gap: 1em;
}

.partners img {
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  width: 100%;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
}

section.hero-section {
  margin-top: 2rem;
}

.hero-wrapper {
  display: flex;
  height: 450px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hero-wrapper img {
  position: absolute;
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-wrapper h1 {
  z-index: 2;
  color: white;
  font-weight: bold;
}

section.contact-form {
  margin: 2rem 0;
}

p.form-response {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

section.contact-form form {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

section.contact-form form select,
section.contact-form form input {
  border-radius: 20px;
  border: none;
  padding: 20px;
}

section.contact-form form .btn {
  background: #D95F31;
  color: white;
  border-radius: 20px;
}

section.location {
  margin-top: 5rem;
  display: flex;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-wrapper p {
  margin-top: 30px;
}

.cta-button a {
  text-decoration: none;
  color: white;
  background: #D95F31;
  padding: 10px 70px;
  border-radius: 20px;
}

.cta-button {
  display: flex;
  margin: 2rem 0;
  align-items: center;
  justify-content: center;
}

section.events-section {
  margin-top: 2rem;
}

.event-month {
  display: flex;
  width: 100%;
}

.event-month p {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.event-month p:after {
  content: "";
  width: 100%;
  height: 2px;
  background: black;
  position: absolute;
  margin-left: 50px;
  top: 50%;
}

.events {
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
  flex-direction: column;
}

.events .event {
  display: grid;
  justify-content: space-between;
  gap: 2rem;
  grid-template-columns: 0.1fr 1fr;
  border-bottom: 1px solid black;
  padding-bottom: 20px;
}

.events .event .event-info-wrapper {
  display: flex;
}

.events .event .date {
  text-align: center;
  text-transform: uppercase;
}

.events .event a {
  color: white;
  text-decoration: none;
  background: #D95F31;
  padding: 10px 40px;
  border-radius: 20px;
}

.events .event p {
  margin: 0;
}

.event-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

section.single-event {
  margin-top: 2rem;
}

.breadcrumb {
  display: flex;
}

.breadcrumb a {
  color: black;
  text-decoration: none;
}

article {
  margin: 3rem 0;
}

article h1 {
  margin-bottom: 2rem;
}

.event-content {
  margin: 2rem 0;
}

.event-navigation {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.prev-event,
.next-event {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prev-event a,
.next-event a {
  color: black;
}

section.rewards-sign-up {
    margin: 5rem 0;
}

.rewards-form-wrapper {
    display: flex;
    justify-content: end;
	align-items: center;
	height: 500px;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.rewards-form-wrapper .rewards-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    background: white;
    padding: 40px;
    border-radius: 30px;
	align-items: center;
	justify-content: center;
}

.rewards-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.rewards-form-wrapper form input {
    border: 1px solid #eeeeee;
    padding: 10px;
    border-radius: 20px;
}

.form-btn button {
    background: #d95f31;
    color: white;
    border-radius: 20px;
    padding: 10px 50px;
}
.form-btn {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rewards-form-wrapper h2 {
    font-weight: bold;
    text-align: center;
}

@keyframes floatLeft {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width:767px) {
  .display-super {
    font-size: 3rem;
    margin-top: 2rem;
  }

  .display-subheading {
    font-size: 2rem;
    padding: 0;
  }

  .hero-tagline {
    padding: 0;
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .uws-address {
    width: 100%;
  }

  .product-info-title {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

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

  .categories-section .list-group-item {
    flex-direction: column;
  }

  .categories-section .list-group-item a {
    width: 100%;
  }

  .ribbon {
    overflow: hidden;
    height: 150px;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-wrapper .about-box {
    width: 100%;
  }

  .ribbon-track span {
    font-size: 1rem;
  }

  section#events .events-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  section#events .card-body {
    flex-direction: column;
    text-align: center;
  }

  section#events .card-body .event-info-title {
    margin: auto;
  }

  section#events .card img {
    margin: 0;
  }

  .cta-loyalty {
    padding: 2rem;
  }

  form.sign-up-form button {
    position: relative;
    top: 0;
    right: 0;
  }

  form.sign-up-form {
    flex-direction: column;
    margin-top: 2rem;
  }

  form.sign-up-form input {
    padding: 10px;
  }

  .story-head {
    grid-template-columns: 1fr;
  }

  .story-cards {
    grid-template-columns: 1fr;
  }

  section.our-partners .partners {
    flex-direction: column;
  }

  .events .event .event-info-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  section.contact-form form {
    grid-template-columns: 1fr;
  }
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .event-navigation img {
    display: none;
  }
	
	.sign-up-btn a {
		width: 100%;
	}
	
	.cta-loyalty {
		gap: 2rem;
	}
	.rewards-form-wrapper .rewards-form {
		width: 100%;
		justify-content: center;
	}
}