*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

.red-background {
  background-color: #8F3E2D;
}

.grey-background {
  background-color: #D6D1C6;
}

.gold-background {
  background-color: #A36840;
}

.brown-background {
  background-color: #2F1219;
}

@media (min-width: 901px) {
  .show-mobile-only {
    display: none;
  }
}

@media (max-width: 900px) {
  .hide-for-mobile {
    display: none;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2F1219;
}
@media (max-width: 599px) {
  body {
    font-size: 1rem;
  }
}

h1 {
  font-family: "desire-pro", serif;
  font-size: 4.625rem;
  font-weight: 400;
  line-height: 1.1;
}
@media (max-width: 599px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1.4rem;
  }
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
}
@media (max-width: 599px) {
  h3 {
    font-size: 1.2rem;
  }
}

.white-text {
  color: #FFFFFF;
}

.grey-text {
  color: #D6D1C6;
}

.red-text {
  color: #8F3E2D;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

.callout-font {
  font-family: "adore-you", serif;
}

.align-center {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.top-30 {
  margin-top: 30px;
}

.bottom-30 {
  margin-bottom: 30px;
}

.top-50 {
  margin-top: 50px;
}

.bottom-50 {
  margin-bottom: 50px;
}

.index-1 {
  position: relative;
  z-index: 1;
}

.index-100 {
  position: relative;
  z-index: 100;
}

.container, .container--narrow, .container--small {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: content-box;
}
.container--small {
  max-width: 1000px;
}
.container--narrow {
  max-width: 700px;
}

.red-button {
  background-color: #8F3E2D;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 58px;
  padding: 25px 65px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: fit-content;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}
.red-button:hover {
  cursor: pointer;
}

.dark-red-button {
  background-color: #8F3E2D;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 58px;
  padding: 25px 65px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: fit-content;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #2F1219;
}
.dark-red-button:hover {
  cursor: pointer;
}

.navigation {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/WoodTexture.jpg");
  background-position: bottom right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 599px) {
  .navigation {
    background-attachment: local;
  }
}

.navigation-logo {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.event-details {
  padding-top: 75px;
  padding-bottom: 75px;
}

.about {
  padding-top: 75px;
  padding-bottom: 75px;
}

.about-flex {
  gap: 75px;
}
@media (max-width: 599px) {
  .about-flex {
    flex-direction: column;
    gap: 50px;
  }
}

.about-text {
  flex: 2;
}

.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.fill-your-glass {
  background: linear-gradient(rgba(47, 18, 25, 0.6), rgba(47, 18, 25, 0.6)), url("../assets/WineGlasses.jpg");
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 250px;
}
.fill-your-glass img {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 599px) {
  .fill-your-glass {
    background-attachment: local;
  }
}

.wavy-background {
  position: relative;
  overflow: hidden;
  background: url("../assets/WavyBackground.svg");
  margin-top: -175px;
  padding-top: 250px;
  padding-bottom: 120px;
  background-position: top;
  background-attachment: local;
  background-repeat: no-repeat;
}

.otb-badge {
  position: absolute;
  bottom: 0;
  right: -25px;
  height: 20%;
}

.coming-soon {
  padding-top: 120px;
  padding-bottom: 120px;
}

.social-media-icons {
  gap: 15px;
}

.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/WoodTexture.jpg");
  background-position: bottom right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 599px) {
  .footer {
    background-attachment: local;
  }
}

.footer-logos {
  gap: 50px;
}
@media (max-width: 599px) {
  .footer-logos {
    flex-direction: column;
    gap: 25px;
  }
}

.footer-logo {
  flex: 1;
}
.footer-logo img {
  width: 100%;
}

.field-group {
  padding-top: 20px;
  padding-bottom: 20px;
}
.field-group p {
  text-transform: uppercase;
  font-weight: 400;
}

.fg-logo {
  gap: 15px;
}

/*# sourceMappingURL=app.css.map */
