/** Heather and Honey **/
/** By Jonathan Mortimer **/

@font-face {
  font-family: "Hello Paris Serif";
  src: url('fonts/hello_paris_serif.ttf') format('truetype');
}

body {
    background-color: #f1eee9;
    margin: 0;
}
 
h1, h2, h3 {
    font-family: 'Hello Paris Serif', cursive;
} 

h1 {
    font-size: 48px;
    line-height: 58px;
    margin: 16px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
    margin: 13px;
}

h3 {
    font-size: 33px;
    line-height: 40px;
    margin: 10px;
}

a {
    color: #c0718e;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
}

.container::before {
    content: " ";
    position: absolute;
    top: 100px;
    left: 30px;
    width: 80px;
    height: 62px;
    background-image: url(../images/honey_bee.png);
}

.container::after {
    content: " ";
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 100px;
    height: 196px;
    background-image: url(../images/flower2.png);
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top:75px!important;
}

#hero img {
    max-width: 50%;
}

#slideshow {
    
}

#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #c0718e;
}

.contact-item {
    display: flex;
    width: 33%;
}

.contact-item {
    padding-top: 15px;
    padding-bottom: 25px;
}

.contact-heading, .contact-details {
    display: flex;
    justify-content: center;
    font-family: 'Forum', serif;
}

.contact-heading {
    font-size: 32px;
}

.contact-details {
    font-size: 26px;
}

#contact {
    display: flex;
    justify-content: center;
}

#contact .contact-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    color: #c0718e;
}


/** Slideshow **/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #fff;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 3px;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/***/

@media screen and (max-width: 1580px) {
    .contact-heading {
        font-size: 27px;
    }
    .slideshow-container {max-width: 400px!important;}
    .contact-details {
        font-size: 22px;
    }
    
    #hero {margin-top:25px!important;}
    
}

@media screen and (max-width: 1280px) {
    .contact-heading {
        font-size: 27px;
    }
    
    .contact-details {
        font-size: 22px;
    }
}

@media screen and (max-width: 1040px) {
    .contact-heading {
        font-size: 22px;
    }
    
    .contact-details {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .contact-heading {
        font-size: 27px;
    }
    
    .contact-details {
        font-size: 22px;
    }
    
    .contact-item {
        width: 100%;
    }
    
    #contact .contact-wrapper {
        flex-direction: column;
        justify-content: center;
    }
    
    h3 {
        font-size: 27px;
    }
    
    .slideshow-container {
      max-width: 400px;
    }
}

@media screen and ((max-width: 991px) and (max-height: 920px)) {
    .slideshow-container {
        max-width: 300px;
    }
    
    .contact-item {
    	padding-top: 5px;
    	padding-bottom: 15px;
    }
}

@media screen and ((max-width: 991px) and (max-height: 920px)) {

    #intro h2 {
        display: none;
    }
}

@media screen and (max-width: 530px) {
    .contact-heading {
        font-size: 22px;
    }
    
    .contact-details {
        font-size: 18px;
    }
    
    #hero img {
    max-width: 80%;
}
    
    h3 {
        font-size: 23px;
    }
    
    h2 { 
        font-size: 28px;
    }
    
    .slideshow-container {
      max-width: 300px;
    }
}