html {
  padding: 0px;
  margin: 0px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
body {
  margin: 0px;
  padding: 0px;
  animation: 0.5s ease-in-out 0s 1 fadeIn;
  background-color: #f9f7ea;
}

#content-container {
  box-sizing: border-box;
  display: grid;
  height: fit-content;
  max-width: 1200px;
  grid-template-columns: 12% 25% 22% 25% 12%;
}
@media screen and (max-width: 1080px) {
  #content-container {
    grid-template-columns: 3% 28% 30% 28% 3%;
  }
}
#content-container {
  column-gap: 1%;
  grid-template-rows: repeat(auto-fit, min(250px, 10vh));
  row-gap: 20px;
  grid-auto-rows: 10vh;
  place-items: center;
  place-content: stretch;
}
#content-container .full-width-padded {
  grid-column: 3/4;
}
#content-container .button {
  cursor: pointer;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  height: 50px;
  width: min(75%, 250px);
  display: block;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: 3px;
  z-index: 25;
  background-color: #620a16;
  color: #f9f7ea;
  background: rgba(98, 10, 22, 0.86);
  border: 1px solid rgba(217, 217, 217, 0.8);
}
#content-container .button a {
  text-decoration: none;
  color: #f9f7ea;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
}
#content-container .white-button {
  cursor: pointer;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  height: 50px;
  width: min(75%, 250px);
  display: block;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: 3px;
  z-index: 25;
  background-color: #f9f7ea;
  color: #620a16;
  border-color: #620a16;
  border-width: 0.5px;
  border-style: solid;
}
#content-container .white-button a {
  text-decoration: none;
  color: #620a16;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
}
#content-container .banner-button {
  z-index: 25;
}

@media screen and (max-width: 600px) {
  #content-container {
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.full-width {
  grid-column: 1/6;
}

.centered {
  grid-column: 3;
}

@font-face {
  font-family: AlverataBl;
  src: local("AlverataBl"), url("../../pre/static/AlverataBl.otf") format("opentype");
}
@font-face {
  font-family: Greatly;
  src: local("Greatly Clean"), url("../../pre/static/Greatly Clean.otf");
}
:root {
  pointer-events: auto;
}

figure {
  margin: 0;
}

#logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15vw;
  height: auto;
}
#logo img {
  width: 15vw;
  height: auto;
}

@media screen and (max-width: 600px) {
  #logo {
    width: 30vw;
    left: 35vw;
  }
  #logo img {
    width: 30vw;
  }
}
h1 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: center;
  font-weight: 800;
  font-size: 84px;
  line-height: 0.9;
  color: #620a16;
}
h1 strong {
  font-family: Greatly;
  font-weight: 400;
}

h2 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: center;
  font-size: 36px;
  font-weight: 200;
  line-height: 1.1;
  color: #52453c;
}
h2 strong {
  font-family: Greatly, Georgia, "Times New Roman", Times, serif;
}

h3 {
  font-family: Greatly, Georgia, "Times New Roman", Times, serif;
  text-align: left;
  font-size: 48px;
  color: #52453c;
  line-height: 0.9;
}

h4 {
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  text-align: left;
  font-size: 24px;
  line-height: 0.9;
  color: #52453c;
}

p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1;
  color: #52453c;
  font-size: 1em;
}

li {
  font-size: 1em;
  padding: 22px auto;
  font-family: Georgia, "Times New Roman", Times, serif;
}

#footer {
  grid-area: -1/1/-1/6;
  display: flex;
  flex-direction: column;
  background-color: #52453c;
  width: 100vw;
  position: relative;
  left: calc((100vw - 1200px) / 2 * -1);
  box-sizing: border-box;
  height: fit-content;
  place-self: start stretch;
}
#footer #footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer #footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer img {
  height: 125px;
  width: fit-content;
  margin: auto;
}
#footer h2 {
  color: #f9f7ea;
}
#footer #addresses {
  text-align: center;
  color: #f9f7ea;
  text-decoration: none;
  padding-bottom: 10vh;
}
#footer #addresses a {
  color: #f9f7ea;
  text-decoration: underline;
}
@keyframes link-hover {
  0% {
    color: #f9f7ea;
  }
  100% {
    color: rgba(249, 247, 234, 0.7333333333);
  }
}
#footer #addresses a:hover {
  animation: 0.25s ease-in 0s both link-hover;
  color: #52453c;
}

#social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  height: 100px;
  box-sizing: border-box;
  margin: 0px 5vw 8vh 5vw;
}
#social-icons figure {
  align-content: center;
  width: 45px;
  height: auto;
  padding: 20px;
}
#social-icons img {
  width: 45px;
  height: auto;
}
#social-icons #wedding-wire {
  width: 90px;
  height: auto;
}
#social-icons #wedding-wire img {
  width: 90px;
  height: auto;
}

@media screen and (max-width: 600px) {
  #footer {
    width: 100vw;
    color: #f9f7ea;
    background-color: #52453c;
    display: flex;
    flex-direction: column;
    place-self: center;
    left: 0;
  }
  #footer h2 {
    color: #f9f7ea;
  }
  #footer #footer-left {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #footer #footer-right {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #footer img {
    width: 100%;
    height: auto;
  }
  #footer #addresses {
    text-align: center;
    text-decoration: none;
    padding-bottom: 10vh;
  }
  h1 {
    font-weight: 600;
    font-size: 52px;
    padding: 18px 0 18px;
  }
}
#nav {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: space-around;
  font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
  place-self: center stretch;
  z-index: 65;
  background: rgba(249, 247, 234, 0.7333333333);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
#nav #nav-logo {
  z-index: 99;
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
}
#nav #nav-left, #nav #nav-right {
  width: 35vw;
}
#nav .main-nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#nav .main-nav-links div {
  display: flex;
  position: relative;
  margin-top: auto;
  border-left: #f9f7ea;
  border-right: #f9f7ea;
}
#nav .main-nav-links .nav-link {
  display: block;
  padding: 45px 3vw;
}
#nav a {
  text-decoration: none;
  color: #620a16;
}

#mobile-nav {
  display: none;
}

@media screen and (max-width: 600px) {
  #nav {
    display: none;
  }
  .nav-shape.clicked {
    background-color: #f9f7ea !important;
    z-index: 100;
  }
  #mobile-nav {
    z-index: 99;
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    box-sizing: border-box;
    height: 25px;
    width: 25px;
  }
  #mobile-nav #mobile-nav-top-rectangle {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #620a16;
    width: 25.5px;
    height: 2px;
  }
  #mobile-nav #mobile-nav-mid-rectangle {
    position: fixed;
    top: 22.5px;
    right: 15px;
    background-color: #620a16;
    width: 22.1px;
    height: 2px;
  }
  #mobile-nav #mobile-nav-bottom-rectangle {
    position: fixed;
    top: 30px;
    right: 15px;
    background-color: #620a16;
    width: 25.5px;
    height: 2px;
  }
  #mobile-nav .nav-clicked {
    background-color: #620a16;
    right: 25px;
  }
  #mobile-nav #mobile-nav-overlay {
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 110%;
    top: 0px;
    opacity: 0;
    background-color: #620a16;
    color: #f9f7ea;
  }
  #mobile-nav #mobile-nav-overlay #mobile-nav-links {
    margin: 25% 5% 15% 5%;
    height: 60%;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    text-align: center;
  }
  #mobile-nav #mobile-nav-overlay #mobile-nav-links .nav-link {
    opacity: 0;
    color: #f9f7ea;
    text-decoration: none;
    font-family: AlverataBl, Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
  }
}
#tour-button-overlay {
  z-index: 99;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 50px;
  font-family: AlverataBl;
  display: block;
  margin: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: rgba(98, 10, 22, 0.86);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border: 1px solid rgba(217, 217, 217, 0.8);
}
#tour-button-overlay a {
  color: #f9f7ea;
  width: 100%;
  text-align: center;
  font-size: 18px;
}

@media screen and (min-width: 600px) {
  #tour-button-overlay {
    position: fixed;
    width: 235px;
    bottom: 3vh;
    right: 5vw;
    border-radius: 3px;
  }
  @keyframes colorFade {
    from {
      background-color: #620a16;
      height: 50px;
      width: 235px;
    }
    to {
      background-color: #52453c;
      height: 52px;
      width: 238px;
    }
  }
  #tour-button-overlay:hover {
    animation: 0.2s ease-in 0s forwards colorFade;
  }
}
#content-container {
  grid-template-rows: repeat(271, max(1vh, 12.5px));
  margin-left: auto;
  margin-right: auto;
  row-gap: 3px;
}

#wine-header {
  grid-area: 37/2/47/5;
  z-index: 1;
}

#wine-hero {
  grid-area: 3/1/58/6;
  display: grid;
  position: relative;
  place-self: start center;
  z-index: -1;
}
#wine-hero figure,
#wine-hero img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 3px;
  mask-image: linear-gradient(to bottom, black 0%, #aaaaaa 30%, transparent 100%);
}

@media screen and (max-width: 600px) {
  #content-container {
    grid-template-rows: repeat(300, max(1vh, 12.5px));
    display: grid;
    grid-template-columns: 3% 28% 34% 28% 3%;
    row-gap: 3px;
  }
  #wine-header {
    grid-area: 27/2/39/5;
  }
  #wine-hero {
    grid-area: 5/1/50/6;
    height: 100%;
    position: relative;
    width: auto;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 0%, rgba(170, 170, 170, 0.6666666667) 40%, transparent 80%);
  }
}
#tasting-room-hours {
  place-self: center start;
  z-index: 20;
  margin: 0;
  grid-area: 49/1/63/6;
  width: 100%;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #620a16;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#tasting-room-hours h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #f9f7ea;
  font-family: Greatly, Georgia, "Times New Roman", Times, serif;
  text-align: left;
  font-size: 48px;
  line-height: 0.9;
  text-align: center;
}
#tasting-room-hours p {
  text-align: center;
  place-self: center;
  color: #f9f7ea;
  font-size: 1.2rem;
}

#wine-intro-section {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: subgrid;
  grid-area: 64/1/87/5;
  z-index: 1;
}
#wine-intro-section div {
  grid-area: 11/3/21/5;
  padding-bottom: 2px;
  place-self: center start;
  padding-left: 10px;
}
#wine-intro-section div p {
  margin-top: 5px;
}
#wine-intro-section > h2 {
  margin: 0;
  place-self: center start;
  grid-area: 3/3/8/5;
  text-align: left;
  font-size: 2.7rem;
  padding-left: 10px;
}
#wine-intro-section figure#wine-intro-image {
  grid-area: 1/1/23/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -25;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#wine-intro-section figure#wine-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

@media screen and (max-width: 600px) {
  #wine-intro-section {
    grid-area: 63/1/111/6;
  }
  #wine-intro-section figure#wine-intro-image {
    grid-area: 1/2/20/5;
  }
  #wine-intro-section > h2 {
    grid-area: 22/2/30/5;
    place-self: start;
    margin-top: 0;
  }
  #wine-intro-section div {
    grid-area: 32/2/48/5;
    margin-top: 12.5px;
  }
  #wine-intro-section > p {
    grid-area: 40/2/50/5;
  }
  #tasting-room-hours {
    grid-area: 45/1/61/6;
  }
}
#wine-varieties {
  grid-area: 90/2/247/5;
  grid-template-rows: subgrid;
  grid-template-columns: subgrid;
  place-self: start;
  display: grid;
}
#wine-varieties > h2 {
  grid-area: 1/1/5/4;
  margin: 0;
  place-self: start center;
}
#wine-varieties h3 {
  margin: 0;
  font-size: 12rem;
}
#wine-varieties #red-wine-header {
  grid-area: 7/1/15/4;
  place-self: end start;
  color: #620a16;
  position: relative;
  top: 43%;
}
#wine-varieties #white-wine-header {
  grid-area: 83/1/93/4;
  place-self: end start;
  color: #ffffff;
  position: relative;
  top: 43%;
  z-index: 1;
  padding-left: 7px;
}

@media screen and (max-width: 600px) {
  #wine-varieties h3 {
    font-size: 5em;
  }
}
#wine-club-callout {
  display: flex;
  flex-direction: column;
  grid-area: 250/1/270/6;
  justify-content: center;
}
#wine-club-callout .button {
  margin-top: 25px;
  place-self: center;
  height: 60px;
}

.red-wine {
  grid-area: 13/1/78/4;
  place-self: start;
  position: relative;
}
.red-wine .wine-text-block {
  background-color: #620a16;
  background-image: url("https://admin.omniwinery.com/wp-content/uploads/2025/10/Grapes-Icon-Cream.png") !important;
}
.red-wine .wine-text-block h2 {
  color: #f9f7ea !important;
}
.red-wine .wine-text-block p {
  color: #f9f7ea !important;
}

.white-wine {
  grid-area: 94/1/159/4;
  place-self: start;
  position: relative;
  top: -3%;
}
.white-wine .wine-text-block {
  background-image: url("https://admin.omniwinery.com/wp-content/uploads/2025/12/Grapes-Icon-Ruby.png");
  background-color: #fdfdfd;
}
.white-wine .wine-text-block h2 {
  color: #620a16 !important;
}
.white-wine .wine-text-block p {
  color: #620a16 !important;
}

.wine-query-loop {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wine-query-loop .wine-card {
  list-style: none;
  padding-left: 0;
}
.wine-query-loop .wine-card .omni_wine {
  display: grid;
  height: max(20vh, 250px);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  object-fit: scale-down;
}
.wine-query-loop .wine-card .omni_wine figure.wine-image,
.wine-query-loop .wine-card .omni_wine img {
  grid-area: 1/2/6/4;
  z-index: 25;
  width: auto;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
}
.wine-query-loop .wine-card .omni_wine .wine-text-block {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: subgrid;
  grid-row: 2/5;
  grid-column: 1/9;
  background-size: 35%;
  background-position-x: 6%;
  background-position-y: 75%;
  background-repeat: no-repeat;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.wine-query-loop .wine-card .omni_wine .wine-text-block .wine-title {
  grid-area: 2/4/3/7;
  color: #620a16;
  text-align: left;
  align-self: self-end;
}
.wine-query-loop .wine-card .omni_wine .wine-text-block .wine-description {
  grid-row: 3/6;
  grid-column: 4/7;
  text-align: left;
  padding-bottom: 25px;
}
.wine-query-loop .wine-card .omni_wine .wine-text-block p {
  color: #620a16;
}

.omni_wine:nth-child(odd) figure.wine-image {
  grid-area: 1/6/6/9 !important;
}
.omni_wine:nth-child(odd) figure.wine-image img {
  height: 100%;
  width: auto;
  place-self: center;
}
.omni_wine:nth-child(odd) .wine-text-block {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 2/5;
  grid-column: 2/9;
  background-position-x: 96% !important;
  background-position-y: 75%;
}
.omni_wine:nth-child(odd) .wine-text-block .wine-title {
  grid-area: 2/1/3/4 !important;
  text-align: right !important;
}
.omni_wine:nth-child(odd) .wine-text-block .wine-description {
  grid-row: 3/6;
  top: -5%;
  z-index: 1;
  grid-column: 1/4 !important;
  place-self: start stretch;
}
.omni_wine:nth-child(odd) .wine-text-block .wine-description p {
  text-align: right !important;
}

@media screen and (max-width: 600px) {
  #wine-varieties {
    grid-area: 115/2/350/5;
  }
  #wine-varieties #red-wine-header {
    grid-area: 6/1/12/6;
    margin: 0;
  }
  #wine-varieties #white-wine-header {
    grid-area: 76/1/80/6;
  }
  .red-wine {
    grid-row: 9/74;
  }
  .white-wine {
    grid-row: 79/160;
  }
  .wine-query-loop .wine-card {
    padding-left: 0px;
  }
  .wine-query-loop .wine-card .omni_wine {
    grid-template-rows: repeat(5, 50px);
  }
  .wine-query-loop .wine-card .omni_wine figure.wine-image {
    position: relative;
    top: 15px;
    grid-area: 1/1/5/5 !important;
    height: 100% !important;
  }
  .wine-query-loop .wine-card .omni_wine figure.wine-image img {
    width: 100%;
  }
  .wine-query-loop .wine-card .wine-text-block {
    grid-template-rows: 40px 100px !important;
  }
  .wine-query-loop .wine-card .wine-text-block .wine-title {
    font-size: 1.2rem;
    place-self: end start;
    margin-bottom: 0;
    grid-column: 3/7 !important;
    grid-row: 1/2 !important;
  }
  .wine-query-loop .wine-card .wine-text-block .wine-description {
    grid-column: 3/7 !important;
    grid-row: 2/3 !important;
    font-size: 0.82rem;
  }
  .wine-query-loop .wine-card .omni_wine:nth-child(odd) .wine-image {
    grid-area: 1/5/5/9 !important;
  }
  .wine-query-loop .wine-card .omni_wine:nth-child(odd) .wine-text-block {
    grid-template-rows: 40px 100px !important;
  }
  .wine-query-loop .wine-card .omni_wine:nth-child(odd) .wine-text-block .wine-title {
    place-self: end end;
    margin-bottom: 0;
    grid-column: 1/5 !important;
    grid-row: 1/2 !important;
  }
  .wine-query-loop .wine-card .omni_wine:nth-child(odd) .wine-text-block .wine-description {
    grid-column: 1/5 !important;
    grid-row: 2/3 !important;
    font-size: 0.82rem;
  }
  #wine-club-callout {
    text-align: center;
    grid-column: 2/5;
    grid-row: 260/275;
  }
}

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