
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #005a93;
  font-size: 1.2rem;
}

a {
  color: #e1430c;
}

a:hover {
  color: #0866ff;
  text-decoration: none;
}

h5, h6 {
  font-family: "Raleway", sans-serif;
}
h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #e1430c;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #0866ff;
  background: #0866ff;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
}

#header.header-scrolled {
  background: rgb(240, 202, 39);
  height: 60px;
  padding: 10px 0;
}

#header .logo img {
  padding: 0;
  margin: 0;
  width: 250px;
}

@media (max-width: 768px) {
  #header .logo img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  margin-top: -10px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu a {
  display: block;
  position: relative;
  color: #e1430c;
  padding: 20px 15px;
  transition: 0.3s;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: rgba(169, 199, 77, 0.7);
  text-decoration: none;
}

.header-scrolled .nav-menu > ul > li {
  background: none;
}

.header-scrolled .nav-menu a {
  color: #fff;
}

.header-scrolled .nav-menu a:hover, .header-scrolled .nav-menu .active > a, .header-scrolled .nav-menu li:hover > a {
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 12px 20px;
  font-size: 17px;
  text-transform: none;
  color: #e1430c;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #0866ff;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
} 

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 30px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
  text-shadow: 1px 1px 3px #000000;
}

.mobile-nav {
  position: fixed;
  top: 85px;
  right: 15px;
  bottom: 250px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #bf3701;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ff9a76;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(169, 199, 77, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #bf3701;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero_bg.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 500px){
  #hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero_mobile.webp") top center;
    background-size: cover;
    position: relative;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 114px;
  line-height: 56px;
  color: #464838;
  text-shadow: -1px 0 2px #464838;
}
@media (max-width: 500px){
  #hero h1 {
    color: #fff;
    text-shadow: 1px 1px 4px #000000;    
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #464838;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 3px solid #464838;
  color: #464838;
}
@media (max-width: 500px){
  #hero .btn-get-started {
    border: 3px solid #fff;
    color: #fff;
    text-shadow: 1px 0 2px #000000;
  }
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.45);
}

@media (min-width: 1367px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 68px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #dfe0df;
}

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

.section-title h2 {
  font-size: 2.5em;
  font-weight: 400;
  position: relative;
  color: #fff;
  text-shadow: 0 0 5px #000;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: #fff8ea;
}

.about #about-second {
  border-radius: 7px;
  border: 5px dashed #d6dce0;
  box-shadow: 0 0 15px #bbb;
}

.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  margin-bottom: 3em;
}

#about-first {
  margin-bottom: 35px;
}

#about-first h3 {
  font-size: 1.7em;
  font-weight: 600;
  color: #0b5626;
}

.about .content p {
  margin-bottom: 30px;
}

#about-img {
  border: 15px solid #fff;
  box-shadow: 0 0 5px #bbbbbb;
}

#winnie-catering-logo {
  width: 125px;
}

#winnie-catering-logo:hover {
  transform: scale(1.1);
}

.about .icon-boxes ul {
  margin-bottom: 2em;
}

.about .icon-boxes li {
  padding-left: 1em;
}

.about .icon-boxes .icon-box {
  margin: 1em;
  background-color: #fff8ea;
  border-radius: 7px;
  box-shadow: inset 0 0 7px #dfdfcf;
}

.about .icon-boxes .icon-box h4 {
  font-size: 1.5em;
  margin: 20px 0 20px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 18px;
  color: #005a93;
  margin-bottom: 2em;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .about .content h3 {
    color: #464838;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(191, 55, 1, 0.5), rgba(191, 55, 1, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

@media (max-width: 1025px) {
    .cta:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: linear-gradient(rgba(191, 55, 1, 0.3), rgba(191, 55, 1, 0.3)), url("../img/cta-bg.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .cta {
    background: none;
  }
  #services {
    background: olive;
  }
  #gallery {
    background: #c88501;
  }
}

.cta #cta-text-fun {
  margin: 50px 0;
}

.cta h3 {
  color: #fff;
  font-size: 2.2em;
  text-shadow: 1px 1px 5px #464838;
  margin: 0;
}

.cta p {
  color: #fff;
  text-shadow: 1px 1px 2px #464838;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  box-shadow: 0 0 10px #ababab inset;
}

.contact {
  padding-bottom: 80px;
}

.contact h2 {
  font-size: 2.5em;
}

.contact .section-title p {
  margin: auto;
  max-width: 700px;
}

.contact .bx-phone-call:hover, .contact .bx-envelope:hover, .contact .bx-map:hover {
  color: #0866ff;
}

.contact .info-box {
  color: #005a93;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 0 10px rgba(44, 51, 22, 0.2);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #e1430c;
  border-radius: 50%;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #005a93;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
}

.contact .info-box em {
  border-top: 2px solid #fcdb1a;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ede6e3;
  padding: 0 0 30px 0;
  font-size: 16px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: white;
  color: #005a93;
  border-top: 4px solid #ffdf4d;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgb(44 51 22 / 40%);
}

#footer .footer-top .footer-info h3 {
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 400;
}

#footer .footer-top .footer-info p {
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e1430c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0866ff;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  border-top: 1px solid #bf3701;
  text-align: center;
  padding-top: 30px;
  color: #005a93;
}

#footer .copyright a {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #e1430c;
}
#footer .copyright a:hover {
  color: #0866ff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #footer .copyright {
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# FB-Feed
--------------------------------------------------------------*/
.fb-feed {
    background-color: #fff8ea;
    margin-top: 80px;
}

.fb-feed .icon-box {
  margin: 1em;
  background-color: #fff8ea;
  border-radius: 7px;
  box-shadow: inset 0 0 7px #dfdfcf;
}

.fb-feed .col-md-6.order-2 {
  overflow: scroll;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/*--------------------------------------------------------------
# Local Vendors
--------------------------------------------------------------*/
.local-vendors {
  margin-top: 100px;
}

@media (max-width: 500px) {
  .local-vendors {
    margin-top: 70px;
  }
}

.local-vendors tr {
  color: #0e6e2c;
}

.local-vendors .table th {
  color: #9a9a9a;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery {
  background: #fae3c2;
}

.initiallyHidden { 
display: none; 
}

.gallery {
  margin-top: 80px;
}

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

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  border: 15px solid #fff;
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap .gallery-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.gallery .gallery-wrap .gallery-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(200, 133, 1, 0.75);
  transition: 0.3s;
  width: 50%;
}

.gallery .gallery-wrap .gallery-links a:hover {
  background: rgba(200, 133, 1, 0.95);
}

.gallery .gallery-wrap .gallery-links a + a {
  border-left: 1px solid #8ec4dd;
}

.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-links {
  opacity: 1;
  bottom: 0;
}

@media (max-width: 499px) {
  .gallery .gallery-wrap .gallery-links {
    display: none; /* Hides the hover effect and Venobox trigger */
  }

  .gallery .gallery-wrap:hover::before {
    opacity: 0; /* Prevents the overlay effect */
  }

  .gallery #hide-p-mobile {
    display: none;
  }
}
