/*
Theme Name: The Hop Inn
Author: HighPeak Web Development
Author URI: https://highpeakwebdevelopment.co.uk
Description: Theme created for the Hop Inn
Version: 2.0
*/

/* Dark green - #063535 */
/* Light green - #A9C5AB */
/* Beige - #F2DEA0 */
/* Pink - #BF1564 */

/* Laca Font*/
@font-face {
  src: url("fonts/Laca Regular.woff");
  font-family: "Laca";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Laca", sans-serif;
}

body {
  background-color: #FAFAFA;
  overscroll-behavior-y: none;
}

/* Navbar to appear on every page */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  position: sticky;
  background-color: #063535;
  padding: 0;
  height: 80px;
  box-shadow: 2px 2px 10px #000000;
  z-index: 10 !important;
}

.navbar-container {
  width: 90%;
  height: inherit;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 20 !important;
}

.logo a img {
  display: block;
  margin-top: 30px;
}

.navbar-links {
  position: absolute;
  left: 0px;
  width: 100%;
  height: calc(100vh - 80px);
  top: 70px;
  background-color: #063535;
  transform: translateX(-100%);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.navbar-links-wallpaper {
  height: calc(100vh - 70px);
  background: url("static/images/flowers/wallpaper_two.JPG");
  background-size: 420px;
}

.navbar-links-active {
  transform: translateX(0%);
  transition: transform 0.3s ease-in-out;
}

.navbar-links-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 20px;
}

.navbar-links-list li {
  opacity: 0;
  font-size: 1.2em;
  list-style: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.navbar-links-list a {
  color: #A9C5AB;
  text-decoration: none;
}

.navbar-links-list li {
  height: 8vh;
  text-align: center;
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*Drop down box styles*/
.down-arrow {
  padding-left: 5px;
}

#dropdown-content {
  display: none;
  padding-top: 20px;
}

#dropdown-content.active {
  display: flex;
}

.navbar-links-list a {
  padding: 0 20px;
}
/*End of drop down box styles*/

.navbar-links-list li a:hover {
  color: #BF1564;
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.navbar-links-list li a:hover {
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.active {
  color: #BF1564;
}

@keyframes navbarLinkFade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
}

.social-links-container {
  width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social-link-item {
  font-size: 2em;

}

.social-link-item a {
  color: #A9C5AB;
  transition-duration: 0.1s;
  transition-timing-function:
  ease-in-out;
}

.social-link-item a:hover {
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function:
  ease-in-out;
}

.navbar-burger {
  width: 50px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.line {
  position: absolute;
  height: 3px;
  width: 25px;
  background-color: #A9C5AB;
  border-radius: 1.75px;
  transition: all ease-in-out 0.2s;
}

.line1 {
  top: 37%;
}

.line2 {
  top: 50%;
}

.line3 {
  top: 63%;
}

.navbar-burger:hover {
  cursor: pointer;
}

.navbar-burger.close .line1 {
  transform: rotate(45deg);
  top: 35px;
}

.navbar-burger.close .line2,
.navbar-burger.close .line3 {
  transform: rotate(-45deg);
  top: 35px;
}

/*Dropdown menu in the navbar*/
#dropdown-button {
  color: #A9C5AB;
  padding: 0 10px;
}

#dropdown-button:hover {
  color: #BF1564;
}
/*End of dropdown menu in the navbar*/




/*----------Social link bar----------*/
.icon-bar-desktop-views {
    display: none;
    top: 50%;
    position: fixed;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.icon-bar-desktop-views a {
    display: block;
    text-align: center;
    transition-timing-function: ease-in-out;
    padding: 10px 12px;
    transition-duration: 0.1s;
    color: white;
    font-size: 25px;
}

.icon-bar-facebook {
    background-color: #3B5998;
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-twitter {
    background-color: #55ACEE;
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-instagram {
    background-image: linear-gradient(to top right, #F77D2E, #D12F82, #903AC4);
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-linkedin {
    background-color: #007bb5;
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-pinterest {
    background-color: #E60023;
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-youtube {
    background-color: #bb0000;
    color: #FFFFFF;
    width: 55px;
}

.icon-bar-facebook:hover,
.icon-bar-twitter:hover,
.icon-bar-instagram:hover,
.icon-bar-linkedin:hover,
.icon-bar-pinterest:hover,
.icon-bar-youtube:hover {
  width: 65px;
    padding-left: 30px;
}

/*----------End of Social link bar----------*/



/* Carousel section*/
.image-carousel {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.slider {
  width: 100%;
}

.slide {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
}

#slide-one {
  background-image: url('static/images/carousel/hop_inn_carousel_one.jpg');
}

#slide-two {
  background-image: url('static/images/carousel/hop_inn_carousel_two.jpg');
}

#slide-three {
  background-image: url('static/images/carousel/hop_inn_carousel_three.jpg');
}

.slide-content {
  min-height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
}

.slide-content-text {
  width: 85%;
  max-width: 500px;
  margin: 50px 0;
  color: #A9C5AB;
}

.slide-content-title {
  font-size: 2.8em;
  text-shadow: 5px 5px 10px #000000;
  margin-bottom: 20px;
  font-weight: 400;
}

.slide-content-flower-image {
  margin: 40px 0;
}

.slide-content-paragraph {
  font-size: 1.4em;
  line-height: 1.4em;
  text-shadow: 5px 5px 10px #000000;
  margin-bottom: 15px;
  font-weight: 400;
}

.slide-content-link {
  color: #BF1564;
  font-size: 2em;
  text-decoration: none;
  font-weight: 600;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.slide-content-link:hover {
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  color: #F01A7E;
  text-decoration: none;
}

.home-page-image-buttons {
  width: 85%;
  max-width: 300px;
  height: 60px;
  margin: 25px 0 0 0;
}

.carousel-indicators {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators .indicator {
  box-sizing: content-box;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 30px;
  margin: 5px 10px 20px 10px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #A9C5AB;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: .6s ease;
}

.image-header-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wallpaper-divider {
  height: 80px;
  background: url('static/images/flowers/wallpaper_two.JPG');
  width: 100%;
  background-size: 420px;
}

/* Welcome section */
.welcome-section {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
}

.welcome-section-container {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 800px;
}

li::marker {
  content: none;
}

.welcome-section-text,
.home-page-gallery-text {
  color: #063535;
  text-align: center;
  margin: 50px 0;
}

.welcome-section-header,
.home-page-gallery-header {
  font-size: 2.5em;
  margin: 20px 0;
  font-weight: 600;
}

.welcome-section-paragraph,
.home-page-gallery-paragraph {
  font-size: 1.2em;
  padding: 10px 0;
  line-height: 1.6em;
}

/* Events section */
.home-page-events {
  background-color: #063535;
  background-size: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-page-events-container {
  width: 80%;
  max-width: 1200px;
}

.home-page-events-intro {
  text-align: center;
  margin: 50px 0;
  color: #A9C5AB;
}

.home-page-events-heading {
  font-size: 2.5em;
  margin: 20px 0;
}

.home-page-events-paragraph {
  font-size: 1.2em;
  line-height: 1.4em;
}

.home-page-event-card {
  margin: 0 0 50px 0;
  border-radius: 20px;
  border: 0;
}

.home-page-event-title {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.home-page-event-subtitle {
  font-size: 1.2em;
  margin-bottom: 15px !important;
}

.home-page-event-paragraph {
  margin: 10px 0;
  background-color: #063535;
  padding-bottom: 20px;
}

.home-page-event-link {
  font-size: 1.6em;
  text-decoration: none;
  font-weight: 600;
  padding: 20px 0;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.home-page-event-link:hover {
  color: #F01A7E;
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.card-body {
  border: 0;
  background-color: #063535;
  padding: 15px;
  text-align: center;
  color: #A9C5AB;
}

.home-page-events-button {
  color: #A9C5AB;
  font-size: 1.4em;
}

.home-page-event-subtitle {
  color: #A9C5AB !important;
}

.home-page-events-more a {
  color: #BF1564;
  font-size: 1.6em;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.home-page-events-more a:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

/* Gallery section */
.home-page-gallery {
  display: flex;
  justify-content: center;
}

.home-page-gallery-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.home-page-gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 1200px;
}

.home-page-gallery-text {
  max-width: 800px;
}

.home-page-gallery-images {
  width: 100%;
}

.blocks-gallery-item {
  width: 100% !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

/* Content Page */
/* Content text section */

.page-header-image {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.page-header-content {
  width: 100%;
}

.page-content-image {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
}

.page-content {
  min-height: calc(40vh - 80px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.page-image-text {
  width: 90%;
  max-width: 500px;
  margin: 50px 0;
  color: #A9C5AB;
}

.page-image-title {
  font-size: 2.8em;
  text-shadow: 5px 5px 10px #000000;
  margin-bottom: 20px;
  font-weight: 400;
}

.content-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content-section-text-container {
  width: 80%;
  max-width: 800px;
}

.content-section-text-container h2,
.content-section-text-container h3,
.content-section-text-container h4,
.content-section-text-container h5,
.content-section-text-container h6 {
  padding-top: 20px;
}

.content-section-text-container p {
  padding: 10px 0;
  line-height: 1.6em;
}

.content-section-text {
  color: #063535;
  margin: 30px 0;
}

.content-section-text-header {
  font-size: 2.5em;
  margin: 20px 0;
  font-weight: 600;
}

.content-section-text-paragraph p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin: 20px 0;
}

.content-section-text-paragraph p a,
.content-section-text-paragraph a {
  color: #BF1564;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.content-section-text-paragraph p a:hover,
.content-section-text-paragraph a:hover {
  color: #BF1564;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.content-section-text-owner {
  margin-top: 50px;
  font-size: 1.6em;
}

.web-link {
  text-decoration: underline;
  color: #063535;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.web-link:hover {
  text-decoration: underline;
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.owner-image {
  padding: 20px 0;
}

/* Event or news blog page */
.archive-title {
  margin: 50px 0 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.archive-title-container {
  width: 90%;
  max-width: 1200px;
}

.archive-title-header {
  font-size: 2em;
  color: #063535;
}

.news-events-section,
.drinks-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-events-section-container {
  margin: 50px 0;
  width: 80%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.news-events-section-card {
  width: 100%;
  background-color: #063535;
}

.news-events-section-image {
  width: 100%;
}

.news-events-section-text {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.news-events-section-text-header {
  padding-bottom: 10px;
}

.news-events-section-text-paragraph {
  padding: 10px 0;
}

.card-meta {
  padding: 5px 0;
}

.card-meta-archives {
  font-size: 0.9rem;
  color: #BF1564;
}

.card-meta-archives a {
  color: #BF1564;
  text-decoration: none;
  text-decoration: underline;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.card-meta-archives a:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.news-events-section-text-header a {
  font-size: 1.6em;
  text-decoration: none;
  color: #A9C5AB;
}

.news-events-section-text p {
  font-size: 1em;
  color: #A9C5AB;
}

.article-link {
  color: #BF1564;
  padding: 10px 0;
  font-size: 1.4em;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.article-link:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

/* Individual Blog Pages */
.blog-page-article {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.blog-page-article-container {
  width: 90%;
}

.blog-page-section-intro {
  margin: 30px 0 10px 0;
}

.blog-page-section-intro-header {
  color: #063535;
  font-size: 2.5em;
  font-weight: 600;
  padding-bottom: 10px;
}

.blog-page-section-intro span {
  color: #BF1564;
  padding: 10px 0;
}

.blog-page-section-intro-date {
  color: #BF1564;
  font-size: 1em;
}

.blog-page-section-intro-subtitle p {
  color: #063535;
  font-size: 1.4em;
  padding: 10px 0;
}

.blog-page-main-text {
  color: #063535;
  font-size: 1em;
  margin: 30px 0;
  font-size: 1.2em;
}

.blog-page-section-text-paragraph {
  font-size: 1.1em;
}

/* Aside section on blog page */
.blog-page-aside {
  background-color: #063535;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-page-aside-container {
  width: 80%;
}

.blog-page-aside-events-intro {
  text-align: center;
  margin: 30px 0;
  color: #A9C5AB;
}

.blog-page-aside-events-heading {
  font-size: 1.6em;
  font-weight: 800;
}

.blog-page-aside-event-card {
  margin: 20px 0;
  border-radius: 20px;
  border: 0;
}

.blog-page-aside-event-title {
  font-size: 1.6em;
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-page-aside-event-subtitle {
  font-size: 1.2em;
  margin-bottom: 15px !important;
  color: #A9C5AB !important;
}

.blog-page-aside-event-paragraph {
  font-size: 1em;
  margin: 10px 0;
  background-color: #063535;
}

.blog-page-aside-event-link {
  font-size: 1.4em;
  font-weight: 600;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.blog-page-aside-event-link:hover {
  color: #F01A7E;
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.aside-card-body {
  border: 0;
  background-color: #063535;
  padding: 15px;
  text-align: center;
  color: #A9C5AB;
}

.blog-page-aside-events-intro {
  color: #A9C5AB;
  font-size: 1.4em;
}

.blog-page-aside-events-more a {
  color: #BF1564;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.blog-page-aside-events-more a:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

/* Blog aside section */
.post-sidebar {
  display: flex;
  justify-content: center;
}

.post-sidebar-container {
  margin: 20px 0;
  width: 90%;
  text-align: center;
  background-color: #063535;
}

.post-sidebar-container li {
  list-style-type: none;
}

.widget {
  margin: 30px 0;
}

.widget h3 {
  font-size: 1.8em;
  color: #A9C5AB;
}

.widget ul {
  margin-top: 20px;
}

.widget ul li {
  margin: 10px 0;
}

.widget ul li a {
  font-size: 1.2em;
  color: #A9C5AB;
  text-decoration: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.widget ul li a:hover {
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  color: #BF1564;
}

.widget-search {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#search {

}

#search-button {
  background-color: green;
  border: 0;
  position: relative;
}


/* Blog comment section*/
.comments {
  display: flex;
  justify-content: center;
}

.comments-container {
  width: 80%;
}

.comment-respond {
  width: 90%;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.comment-form-author input,
.comment-form-email input {
  height: 30px;
  padding: 5px;
}

.comment-form-author {
  margin-bottom: 20px;
}

.comment-reply-title {
  font-size: 1.6em;
  line-height: 1em;
  color: #063535;
  margin-bottom: 20px;
}

.comment-reply-title a {
  text-decoration: none;
  color: #063535;
}

.comment-reply-title small a {
  color: #BF1564;
}

#comment {
  height: 80px;
  margin: 5px 0;
  padding: 5px;
  font-size: 1em;
}

.form-submit {
  display: flex;
  justify-content: flex-start;
  margin-left: 2px;
}

.logged-in-as {
  margin: 10px 0;
}

.logged-in-as a {
  color: #BF1564;
  text-decoration: none;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
  font-size: 1.2em;
  color: #063535;
}

.submit {
  font-size: 1em;
  color: #BF1564;
  border: 0;
  background-color: #FAFAFA;
  margin-right: 5px;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.submit:hover {
  transition-property: color;
  color: #F01A7E;
  cursor: pointer;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.post-comments-section {
  width: 90%;
  margin: 20px 0;
}

.comments-container {
  width: 90%;
}

.post-comments {
  list-style-type: none;
}

.children li {
  list-style-type: none;
  margin-left: 20px;
}

.comments-header {
  margin-bottom: 30px;
  font-size: 1.6em;
  color: #063535;
}

.comment-body {
  margin: 20px 0 40px 0;
}

.comment-author img {
  display: none;
}

.comment-author {
  color: #063535;
  font-size: 1.2em;
}

.comment-metadata a,
.comment-metadata span {
  font-size: 0.8em;
  color: #BF1564;
  text-decoration: none;
}

.comment-content p {
  padding: 10px 0;
  color: #063535;
  font-weight: 200;
  font-style: italic;
  font-size: 1em;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.comment-reply-link {
  color: #BF1564;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.comment-reply-link:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.comment-form-url {
  display: none;
}

.comment-notes,
.comment-form-cookies-consent {
  color: #063535;
  font-size: 1em;
  padding: 10px 0;
}

.comment-form-cookies-consent {
  margin: 10px 0;
}

/* News and events page */

.pagination {
  display: inline-block;
  padding: 10px 0 50px 0;
}

.pagination span {
  font-size: 1.4em;
  font-weight: 600;
  color: #BF1564;
  margin: 0 5px;
}

.pagination a {
  font-size: 1.4em;
  font-weight: 600;
  color: #063535;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  text-decoration: none;
  margin: 0 5px;
}

.paingation a:hover {
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

/* Drinks Page */

.drinks-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.drinks-section-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px 0;
}

.drinks-section-card {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  margin: 20px 0;
}

.drinks-section-image {
  width: 30%;
  height: 100%;
  position: contain;
}

.drinks-section-text {
  width: 70%;
  font-weight: 200;
  padding: 0 10px 0 10px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color: #FAFAFA;
}

.drinks-section-text-header {
  font-size: 1.6em;
  padding-bottom: 5px;
  color: #063535;;
}

.drinks-section-text-paragraph {
  color: #063535;
  font-size: 1.2em;
}

/*Footer to appear on every page*/
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-wallpaper-section {
  width: 100%;
  height: 80px;
  background: url('static/images/flowers/wallpaper_two.JPG');
  background-size: 420px;
}

.footer-bottom {
  width: 100%;
  height: 60px;
  background-color: #063535;
  display: flex;
  justify-content: center;
  color: #A9C5AB;
}

.footer-top {
  width: 100%;
  background-color: #063535;
  display: flex;
  justify-content: center;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
}

.footer-top-container {
  margin-top: 1.5em;
}

.footer-top-areas {
  display: flex;
  flex-direction: column;
}

.footer-bottom-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-section {
  width: 100%;
  margin-bottom: 2em;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-section-container {
  width: 90%;
}

#footer-visit-section {
  background-image: url("static/images/flowers/green_background_flower_small.JPG");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: 0% 25%;
}

#footer-opening-section {
  background-image: url("static/images/flowers/green_background_flower.JPG");
  background-size: 130px;
  background-repeat: no-repeat;
  background-position: 110% bottom;
}

.footer-header {
  color: #A9C5AB;
  font-size: 2em;
  margin: 10px 0 20px 0;
}

.footer-paragraph {
  color: #A9C5AB;
  font-size: 1em;
  line-height: 1.7em;
}

.footer-paragraph a {
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-paragraph a:hover {
  transition-property: color;
  color: #FAFAFA;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-link {
  font-size: 1.2em;
  line-height: 1em;
}

.footer-paragraph span a {
  color: #A9C5AB;
  transition-duration: 0.1s;
  text-decoration: underline;
  transition-timing-function: ease-in-out;
}

.footer-paragraph span a:hover {
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

#footer-paragraph-phone,
#footer-paragraph-email {
  font-size: 1em;
  font-weight: 600;
  margin: 10px 0 10px 0;
  color: #A9C5AB;
}

.footer-paragraph-contact a {
  color: #A9C5AB;
  text-transform: none;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-paragraph-contact a:hover {
  color: #BF1564;
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-paragraph-contact i {
  margin-right: 15px;
}

/*Social links at the top of the footer*/
.footer-social {
  padding: 50px 0 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
}

.social-links-footer {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.social-footer {
  margin: 0 10px;
}

.social-links-footer li a {
  text-decoration: none;
}

.social-links-footer li a i {
  font-size: 2em;
  display: flex;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  color: #A9C5AB;
}

.social-links-footer li a i:hover {
  transition-property: color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  color: #BF1564;
}

.footer-statement {
  display: flex;
  justify-content: space-between;
}

.footer-statement p a {
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-statement p a:hover {
  transition-property: color;
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-map {
  height: 400px;
  padding: 20px 0;
}

.footer-map-imported {
  width: 100%;
  height: inherit;
  overflow-x: hidden;
}

.statement,
.footer-contact-visit-links-span {
  font-size: 0.8em;
  margin: 0;
}

.statement {
  display: flex;
  align-items: center;
}

.statement a {
  color: #A9C5AB;
  text-decoration: none;
}

.footer-contact-visit-links-span a {
  color: #FAFAFA;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-contact-visit-links-span a:hover {
  color:#FAFAFA;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.footer-larger-screen-map-section {
  display: none;
}

/* 404 Page setup */
.page-not-found-section {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-not-found-section-container {
  width: 90%;
  text-align: center;
}

.page-not-found-heading {
  font-size: 2.5em;
  color: #063535;
  margin: 40px 0;
}

.page-not-found-paragraph {
  font-size: 1.6em;
  color: #063535;
}

.page-not-found-paragraph a {
  color: #BF1564;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

.page-not-found-paragraph a:hover {
  transition-property: color;
  color: #F01A7E;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}

/* Larger screen sizes */
@media(min-width: 500px) {

  .home-page-gallery-image {
    width: 50%;
  }

  .news-events-section-container {
    grid-template-columns: 1fr 1fr;
  }

  .post-comments-section {
    width: 100%;
  }

  .comments-container {
    width: 90%;
  }

  /* Home page gallery section*/

  .blocks-gallery-item {
    width: 45% !important;
    margin: 10px 10px !important;
  }

}

@media(min-width: 768px) {

  .slide-content {
    min-height: calc(80vh - 80px);
  }

  .welcome-section {
    min-height: calc(60vh - 80px);
  }

  .welcome-section-container {
    display: flex;
    align-items: center;
  }

  .home-page-event-text {
    display: flex;
    justify-content: space-around;
  }

  .home-page-events-intro {
    margin: 50px 0 20px 0;
  }

  .home-page-events-more {
    margin: 20px 0 50px 0;
  }

  .blog-page-aside-event-text {
    display: flex;
    flex-direction: row;
  }

  .comment-respond {
    width: 90%;
  }

  .drinks-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .drinks-section-container {
    display: flex;
    width: 90%;
    margin: 50px 0;
  }

  .drinks-section-card {
    width: 45%;
  }

  .page-content {
    min-height: calc(60vh - 80px);
  }

  #footer-visit-section {
    background-size: 150px;
    background-position: 15% 20%;
  }

  #footer-opening-section {
    background-size: 180px;
    background-position: 90% bottom;
  }
}

@media(min-width: 992px) {

  .navbar {
    display: flex;
    justify-content: center;
  }

  .navbar-container {
    position: absolute;
    max-width: 1200px;
    width: 90%;
    height: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo a img {
    margin-top: 50px;
    height: 120px;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-links {
    position: sticky;
    top: 0;
    display: flex;
    transform: none;
    height: 80px;
  }

  .navbar-links-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 80px;
    min-height: 80px;
    width: 100%;
    margin: 0;
    padding-top: 0px;
  }

  .navbar-links-list li {
    opacity: 1;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .navbar-links-wallpaper {
    display: none;
  }

  .social-links {
    display: none;
  }

  /* Social icon links*/
  .icon-bar-desktop-views {
    display: block;
  }

  /* Image carousel */
  .slide-content {
    min-height: calc(80vh - 80px);
  }

  /* Welcome section */
  .welcome-section {
    min-height: calc(60vh - 80px);
  }

  /* Events blog */
  .home-page-events-intro {
    margin-bottom: 80px;
  }

  .card-body {
    padding: 0 30px;
  }

  .home-page-event-card {
    width: 30%;
  }

  /* Gallery section */
  .home-page-gallery-image {
    width: 33%;
  }

  .modal-container {
    max-width: 800px;
  }

  /* Home page gallery section*/

  .blocks-gallery-item {
    width: 31% !important;
    margin: 10px 10px !important;
  }

  /* Blog page */
  .blog-page {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .blog-page-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .blog-page-aside-event-text {
    display: flex;
    flex-direction: column;
  }

  .blog-page-article {
    width: 68%;
  }

  .blog-page-aside {
    width: 28%;
    margin: 30px 0;
  }

  .blog-page-article-container {
    width: 100%;
  }

  .blog-page-aside-container {
    width: 90%;
  }

  .blog-page-aside-events-heading {
    font-size: 1.4em;
  }

  .blog-page-aside-event-card {
    margin: 10px;
  }

  .aside-card-body {
    padding: 10px;
    margin: 0;
  }

  .sidebar-wallpaper {
    display: none;
  }

  .post-sidebar {
    width: 30%;
    background-color: #FAFAFA;
  }

  .post-sidebar-container {
    background-color: #FAFAFA;
  }

  .post-sidebar-content {
    background-color: #063535;
    padding: 30px 10px;
  }

  /* Blog article pages*/
  .news-events-section-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Footer section*/
  .footer-top-areas {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-container {
    max-width: 1200px;
    width: 90%;
  }

  .footer-section {
    width: 30%;
  }

  #footer-visit-section {
    background: none;
  }

  #footer-opening-section {
    background: none;
  }

  .footer-map {
    display: none;
  }

  .footer-larger-screen-map-section {
    display: flex;
    width: 100%;
  }

}

@media(min-width: 1224px) {

  .welcome-section {
    min-height: calc(60vh - 80px);
  }

  .footer-top {
    background-image: url("static/images/flowers/green_background_flower.JPG");
    background-size: 170px;
    background-repeat: no-repeat;
    background-position: -50px center;
  }
}
