/* import fonts here */

/* @import url("https://fonts.googleapis.com/css?family=Cookie&display=swap"); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/* css variables here */

@font-face {
  font-family: 'righteous';
  src: url('./font/Righteous-Regular.ttf');
}

/* @font-face {
  font-family: 'oswald';
  src: url('./fonts/osward.ttf');
} */

:root {
  --primary: #d2202f;
  --secondary: #462210;
  --tertiary: #f8f8f8;

  --primaryFont: 'righteous', sans-serif;
  --bodyLight: rgb(164, 164, 164);
  --bodyFont: 'Oswald', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primaryFont);
}

body {
  font-family: var(--bodyFont);
  overflow: hidden;
}

/* ====== Homepage   ====== */

.brand-logo {
  max-width: 250px;
}

.shout {
  padding: 3rem 1rem;
}
.shout-container shouttitle,
.shout-container shoutdate,
.shout-container shoutmessage {
  color: black;
}
.shout-container shouttext,
.shout-container shoutinner {
  padding: 0;
}

.shout-container shouttitle {
  color: var(--primary);
  font-size: 2rem;
  font-family: var(--titleFont);
}

.home-aboutsection {
  padding: 1rem;
  position: relative;
  top: -1rem;
}

.home-aboutsection h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-aboutsection p {
  margin-bottom: 1em;
}

.home-menusection,
.home-gallerysection {
  max-width: 600px;
  position: relative;
  /* height: 100vh; */
  padding-bottom: calc(47vh + 18vw);
  margin: 2rem auto 0;
}

.home-menusection h1,
.home-gallerysection h1 {
  top: 30%;
  position: absolute;
  font-size: 2.5rem;
  z-index: 100;
  width: 65%;
}

.home-menusection h1 {
  right: 1rem;
  text-align: right;
}
.home-gallerysection h1 {
  left: 1rem;
  text-align: left;
}

.home-menusection img,
.home-gallerysection img {
  max-width: 500px;
  width: 100%;
  position: absolute;
}

.home-menusection img {
  left: calc(-80% + 30vw);
  /* transform: translateX(-50%); */
}

.home-gallerysection img {
  right: calc(-80% + 30vw);
  /* transform: translateX(50%); */
}

.home-menusection .btn,
.home-gallerysection .btn {
  position: absolute;
  background-color: var(--primary);
  color: white;
  border-radius: 80px;
  padding: 1rem 2rem;
  bottom: 20%;
  z-index: 100;
}

.home-menusection .btn {
  right: 1rem;
}
.home-gallerysection .btn {
  left: 1rem;
}

.btn {
  transition: all ease-in-out 0.2s;
}

.btn:hover {
  background-color: rgb(119, 6, 6);
}

.home-purchase {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-purchase a {
  width: 100%;
}

.purchase-box {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 400px;
  margin: 1rem auto;
  border: solid 1px var(--secondary);
  transition: all ease-in-out 0.5s;
}
.purchase-box img {
  height: 50px;
  text-align: center;
  margin: 0 auto;
  transition: all ease-in-out 0.5s;
}

.purchase-box h2 {
  transition: all ease-in-out 0.5s;
  color: var(--secondary);
}

.home-minigallery {
  display: flex;
  flex-wrap: wrap;
  padding: 2.25%;
}
.home-minigallery img {
  width: 48%;
  margin: 1%;
  object-fit: cover;
  max-height: 200px;
}

.home-minigallery img:nth-child(1),
.home-minigallery img:nth-child(4) {
  width: 98%;
}

@media (min-width: 767px) {
  .home-gallerysection,
  .home-menusection {
    max-width: 700px;
    padding-bottom: 50vh;
  }
  .home-gallerysection img,
  .home-menusection img {
    max-width: 400px;
  }
  .home-menusection img {
    left: -15%;
    /* transform: translateX(-15%); */
  }
  .home-gallerysection img {
    right: -15%;
    /* transform: translateX(15%); */
  }

  .home-aboutsection {
    display: flex;
    margin-top: 5rem;
  }

  .home-aboutsection .content {
    position: relative;
    top: 5rem;
    left: -2rem;
    width: 50%;
    order: 2;
    background: var(--secondary);
    color: white;
    padding: 2rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 50;
    justify-content: center;
  }

  .home-aboutsection img {
    position: relative;
    right: -2rem;
    width: 50%;
    object-fit: cover;
    order: 1;
  }

  .home-purchase {
    padding: 7.5rem 1rem 4rem;
    flex-direction: row;
  }

  .home-purchase a {
    margin: 0 1rem;
  }

  .home-purchase a:hover .purchase-box {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
  }

  .home-purchase a:hover .purchase-box h2 {
    color: white;
  }

  .home-purchase a:hover .purchase-box img {
    filter: brightness(0) invert(1);
  }

  .home-minigallery img:nth-child(1) {
    width: 22%;
  }
  .home-minigallery img {
    width: 22%;
    margin: 1%;
    object-fit: cover;
    max-height: 300px;
  }

  .home-minigallery img:nth-child(2),
  .home-minigallery img:nth-child(4) {
    width: 48%;
  }
}

/* ====== Menu   ====== */

.menupage .menuoutercontainer {
  /* background: var(--primary); */
  padding: 2rem 1rem 5rem;
}

.menuSectionName {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 90px 0px;
}

#menuGallery {
  padding: 3rem;
}

#menu-container {
  background: white;
  box-shadow: 2px 2px 8px black;
}

.sub-item-box h1 {
  /* background: var(--primary); */
  font-size: 2rem;
  font-weight: 300;
  color: black;
  text-align: left;
  margin: 1rem 2.5%;
  text-transform: uppercase;
}

#menuSectionOfSections > div {
  margin: 2.5%;
  width: 95%;
  box-shadow: 2px 2px 8px;
}

.menu-item {
  width: 95%;
  margin: 1rem 2.5% 1rem 2.5%;
}
.menu-item-description h3 {
  /* text-transform: uppercase; */
  /* color: var(--primary); */
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.25rem;
}

.menu-item-description p {
  color: #686868;
  /* text-transform: uppercase; */
  /* font-weight: bold; */
}

.menu-item-prices p {
  margin: 0 0 0 auto;
}

.price {
  /* color: var(--primary);
   */
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.3rem;
  display: none;
}

.menu-var {
  font-style: italic;
}

.back_btn_menu {
  background: var(--secondary);
  border: none;
}

@media (min-width: 767px) {
  .menu-item {
    display: inline-flex;
    width: 45%;
    float: left;
  }

  #menuSectionOfSections > div {
    width: 45%;
  }

  #menuGallery {
    padding: 5rem;
  }
}

/* ====== Events   ====== */
#events-container {
  margin-bottom: 6rem;
}

.special-events-title {
  color: black;
}

.no-event-post-text {
  text-align: center;
  margin: 0 auto;
}

.recurring-event-container {
  width: 95%;
  padding: 2rem;
  margin: 0 auto;
  color: black;
}

/* ====== GALLERY   ====== */

#photos-container {
  padding: 2rem 2rem;
}

#gallery {
  padding: 1rem 1rem 3rem;
}

#gallery h1 {
  font-size: 2rem;
  margin: 2rem;
}

#gallery .back-to-album {
  max-width: 200px;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  color: white;
}

.gn-gal-text {
  color: var(--primary);
  font-size: 2rem;
}

/* ====== Contact   ====== */

.contact-details-box {
  padding: 4rem 1rem;
  text-align: center;
}

.contact-details-box svg {
  height: 1rem;
  fill: var(--primary);
}
.contact-details-box svg * {
  fill: var(--primary);
}

.contact-details-box a {
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-details-box div {
  margin: 1rem;
}

.contact {
  padding-bottom: 5rem;
}

.contact .title {
  text-align: center;
  font-size: 3rem;
  color: white;
}

.contact form {
  max-width: 600px;
  margin: 1rem auto;
}

.secure-form .secure-form-item input,
.secure-form .secure-form-item textarea {
  border: solid 1px white;
  border-radius: 0;
  background: none;
  color: white;
}

.secure-form .secure-form-submit-button[type='submit'] {
  background: var(--secondary);
  font-family: var(--titleFont);
}

.secure-form .secure-form-item label {
  font-family: var(--titleFont);
  color: white;
}

.map-container iframe {
  width: 100%;
  height: 50vh;
}

.g-recaptcha iframe {
  max-height: 76px;
}

.contact-container {
  margin: 3rem 0rem;
  padding: 2rem 1rem;
  background: var(--primary);
}

.contact h3 {
  color: var(--primary);
  font-size: 2rem;
  text-align: center;
}

.hours-section {
  margin-bottom: 4rem;
}

.hours_title_numbers {
  width: 50%;
  margin: 0 0 0 auto;
}

.hours_container_box {
  float: unset;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.hours-numbers {
  margin-bottom: 0.25rem;
}

.day-toggle {
  color: var(--secondary);
  font-size: 1.25rem;
}

@media (min-width: 1024px) {
  .hours_container_box {
    float: left;
    display: block;
  }

  .hours_title_numbers {
    margin: 0.5em;
    width: 100%;
    text-align: center;
  }
}

#aboutus-container {
  font-size: 1.25rem;
}
