:root{
    --secondary-bg-color: #ef0ee4; /* global scope */
    --primary-bg-color: #000;
    --primary-text-color: #fff;
    --secondary-text-color: #353333;
    --thirtiary-text-color: #ac961a;
}

.header-icon {
  font-size: 6vw;
  color: var(--secondary-text-color);
  display: block;
  width: 6vw;
  margin: 0% auto 5%;
  display: none;
}

#header h1 a {
  color: var(--secondary-text-color);
  text-decoration: none;
  font-size: 5vw;
  margin: auto;
  width: 90vw;
  display: block;
  text-align: right;
  padding-bottom: 2%;
  border-bottom: 1vw solid;
  transition: color 1.5s;
}

#header h1 a:hover {
  color: var(--thirtiary-text-color);
}

body {
    background-color: var(--primary-bg-color);
    color: var( --primary-text-color);
    width: 100vw;
    font-family: serif;
}

.home {
  animation: shift 3s ease-in-out
}

.home #header h1 a {
 font-size: 10vw;
}

.home .header-icon {
  display: block;
}

a {
    color: var(--primary-text-color);
}

.content {
  height: unset;
  margin-top: 2%;
  margin-bottom: 5vw;
  display: inline-block;
}

.home-page .event-type {
  border: 10px solid var(--secondary-bg-color);
  transform: rotate(0deg);
  width: 85vw;
  margin-bottom: 10vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 100%;
  overflow: hidden;
  height: 85vw;
  float: none;
  display: block;
}

.home-page .events-container {
  margin: 0 auto;
  width: 98vw;
}

.home-page .event-type .wp-post-image {
  z-index: 0;
}

.home-page .event-type .attachment-post-thumbnail {
  filter: hue-rotate(179deg) brightness(1);
  transition: filter 1s ease-in-out;
  height: 86vw;
  width: unset;
}

.home-page .event-type .attachment-post-thumbnail:hover {
    filter: hue-rotate(0deg) brightness(1);
}

.home-page .event-type h2 {
  font-size: 7vw;
  text-transform: uppercase;
  margin-top: 0;
  text-align: center;
}

.home-page .event-type .title-bg {
  margin-top: -60%;
  opacity: 0.85;
  transform: rotate(10deg);
  position: absolute;
  background-color: var(--secondary-bg-color);
  padding: 5% 0%;
  z-index: 1;
  width: 115%;
  height: 10%;
  margin-left: -7%;
}

 @keyframes shift { 
     0% {
     opacity: 0; 
    } 
     100% { 
        opacity: 1; 
    } 

} 

.designed-by {
  display: block;
  text-align: left;
  margin-left: 1vw;
  padding-bottom: 4vw;
}

#respond {
  display: none;
}


.site-footer {
    background: var(--secondary-bg-color);
    text-align: center;
    font-size: 2vw;
    padding-top: 7%; 
    margin-left: -8px;
    margin-bottom: -8px;
  }
    
   .site-footer .container { 
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
   } 
  
      .row { display: flex; justify-content: space-around; } 
      .col-md-4 { width: 100%; } 
      .col-md-4 a { color: #333; text-decoration: none; } 
      .col-md-4 a:hover { text-decoration: underline; } 
      .col-md-4 .site-info { text-align: left; } 
      .site-info .terms-of-service { background-color: #f0f0f0; color: #333; } 
      .site-info .contact { color: #333; } 

.menu {
  display: block;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.menu ul {
  text-align: center;
}  

.menu ul li a {
  color: var(--secondary-text-color);
  font-size: 4vw;
  font-weight: bold;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 1.5s;
}   

.home .menu ul li a {
  font-size: 6vw;
}

.menu ul li a:hover {
  color: var(--thirtiary-text-color);
}

.content-area {
  width: 80vw;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 2vw;
  margin-bottom: 15%;
  margin-top: 5%;
  min-height: 80vh;
}

.text-field {
  margin-top: 1vw;
  min-height: 5vw;
  width: 100%;
  font-size: 4vw;
}

textarea {
  margin-top: 1vw;
  min-height: 5vw;
  width: 100%;
  font-size: 2.5vw;
}

.menu ul li::marker {
  color: var(--primary-bg-color);
  font-size: 0;
}

.book-now {
  background: var(--secondary-bg-color);
  border-radius: 14px;
  border: none;
  width: 20vw;
  height: 10vw;
  color: var(--primary-text-color);
  font-size: 4vw;
  font-weight: bold;
}

.book-now:hover {
  background: rgb(214, 56, 161);
  border: 4px solid #fff ;
}

@media (min-width: 1000px) {
  .home-page .event-type {
    width: 20vw;
    margin-top: 1%;
    margin-left: 3%;
    margin-right: 0%;
    display: block;
    height: 20vw;
    float: left;
    margin-bottom: 2%;
  }

  .content {
    margin-top: 0%;
  }

  .content-area{
    margin-top: 0%;
  }

  .home-page .event-type .attachment-post-thumbnail {
    height: 21vw;
  }

  .home-page .event-type h2 {
    font-size: 1.5vw;
    text-transform: uppercase;
  }

  .book-now {
    width: 7.5vw;
    height: 4vw;
    font-size: 1.5vw;
   }

}
