body, html {
    height: 100%;
    font-family: 'Amatic SC', cursive;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 35px;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: url("st_michaels_mount_day.jpg");

  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: gold;

}

.hero-text-bottom{
  color: gold;
  text-align: center;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, 60%);
}

.header-top{
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    /* background-image: url("st_michaels_mount_day.jpg"); */
    
    /* Set a specific height */
    /* height: 18%; */
    
    /* Position and center the image to scale nicely on all screens */
    /* background-position: 50% 35%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; */
    background-color: skyblue;
    height: 18%;
    text-align: center;
}

.header-top img{
    height: 100%;
   /*  background-image: url("wedding."); */
    display: inline-block;
    margin: 0px auto;
}
    
/* Place text in the middle of the image */
.header-text {
    text-align: center;
    color: gold;
    
}

.page-title h3{
    font-size: 50px;
    color: navy;
    padding: 30px;
}

.content {
    min-height: calc(100vh - 150px);
}

footer {
    height: 150px;
    background-color: skyblue;
    text-align: right;
}

.family_small{
    height: 150px;
}

.divider{
    height: 10px;
    background-color: lightblue;
}

h1{
    font-size: 50px;
}
/*Although bigSlide will automatically position your menu off screen, I recommend adding the following to your CSS to prevent a flash of the menu on load:*/
.panel {
    position: fixed;
    left: -15.625em; /*left or right and the width of your navigation panel*/
    width: 15.625em; /*should match the above value*/
    background-color: lightslategray;
    text-align: center;
}

.panel a{
    text-decoration: none;
    color: white;
    font-size: 30px;
    border-bottom: dashed 2px white;
    padding-bottom: 10px;
}

.panel a:hover{
    color: gold
}

.panel li{
    margin-top: 20px;
}

/*Additionally, any elements that use the .push class should be relatively positioned:*/
.wrap {
    position: relative;
}

.menu-link{
    position: fixed;
    top:30px;
    right: 50px;
    z-index: 100;
}


/*hamburger animation*/
/* Icon 3 */

* {
    margin: 0;
    padding: 0; 
  }
  
  /* Icon 3 */
  
  #nav-icon3 {
    width: 60px;
    height: 60px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  #nav-icon3 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 100%;
    background: lightslategray;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  
  #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 18px;
  }
  
  #nav-icon3 span:nth-child(4) {
    top: 36px;
  }
  
  #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  /* main layout css*/
  .all-accommodation{
    padding: 20px;
}
.property{
    border: dashed 2px black;
    border-radius: 20px 0px 20px 20px;
    padding: 10px;
    margin-top:20px;
}


.property-name{
    font-size: 45px;
    padding: 20px;

}

.property-text{
    width: 60%;
    display: inline-block;
    vertical-align: top;
    padding:10px;
    font-size:35px;
    text-align: justify;
    margin: 0px auto;
    overflow-wrap: break-word;
    word-wrap: break-word;

}
.property-image-div{
    width: 30%;
    display: inline-block;
}

.property-image{
    width: 100%;
}

@media screen and (max-width: 600px) {
    .property-text{
        width: 95%;
        display: block;
        overflow-wrap: break-word;
        word-wrap: break-word;

    }
    .property-image-div{
        width: 90%;
        display: block;
        padding: 5%;
    }
}

    

  /*faqs*/

  .faq-container{
      max-width: 600px;
      padding: 30px;
      text-align: center;
      margin: 0px auto;
  }
  .accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #03b5d2;
  }
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
  }
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    font-family: 'Amatic SC', cursive;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded=true] {
    color: #03b5d2;
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 36em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }


/*   rsvp */
.whole-form{
    margin: 20px;
}

select, input, text, textarea{
    font-family: 'Amatic SC', cursive;
    font-size: 35px;
}  

.submit-button{
    background-color: gold;
    border-radius: 5px;
    padding:2px 4px;
}

.question{
    padding:10px;
}

.guest-info{
    display: none;
}

.response{
    margin: 80px 0px;
}


@media screen and (max-width: 600px) {
  h1{
    font-size: 30px
  }

  .menu-link{
    top:15px;
    right: 15px;
  }

  .page-title h3 {
    font-size: 35px;
    color: navy;
    padding: 10px;
  }

  .all-accommodation {
    padding: 5px 20px;
    margin-bottom: 10px;
  }

  .property-name {
    font-size: 35px;
    padding: 6px;
  }

  .property-text {
    padding: 8px;
    font-size: 28px;
  }

  textarea {
    height: 80vw;
  }

  .index-header{
    font-size: 37px;
  }

  .hero-image {
    height: 160%;
  }

  .hero-text {
    top: 13%;
  }

  .whole-form{
    margin: 5px;
  }

  .question{
    padding:5px;
  }

  .panel li {
    margin-top: 12px;
  }

  .panel a {
    padding-bottom: 13px;
  }
}