/* General Css */
html {
  scroll-behavior: smooth;
}


@font-face {
    font-family: nameFont;
    src: url(../fonts/Nobili.woff);
  }

@font-face {
  font-family: paradise;
  src: url(../fonts/ParadiseLove.woff);
}


/* Navigation css */

.nav-link{
  font-weight: bold !important;
  color: #fff !important;
}

/* Hero section */
.hero-image {
    background-image: url("../img/Home.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
  }

  .wedding-names{
    margin: 0px auto;
    padding: 80px;
    text-align: center;
  }

  .wedding-names p{
    font-size: 80px;
    text-align: center;
    font-family: paradise;
  }

  .wedding-names button{
    width: 150px;
    height: 40px;
    border: 1px solid #000;
    background-color: transparent;
    border-radius: 20px;

  }

/* our story css */
  
.our-story{
    background-color: #f4d6c1;
    padding: 50px;
}

.os-1{
    position: relative;
    padding: 10px;
    text-align: center;
}

.os-1 img:first-child{
    width:80%;
}

.flower-1{
  width: 40%;
  position: absolute;
  left: -10px;  
  bottom: 40px;
}

.os-1 p{
    font-size: 60px;
    text-align: right;
    margin-right: 40px;
    font-family: nameFont;
}

.os-2{
    padding: 10px;
    text-align: center;
}

.os-2 img{
    width:100%;
}

.os-3{
  padding: 100px 0;
  margin: 0px auto;
}

.os-3 p:first-child{
  font-family: nameFont;
  font-size: 50px;
}

.os-3 p{
  font-size: 20px;
}

/* details css */
.details{
  background-color: #F6F2E7;
}

.det-1{
  padding: 150px 0;
  margin: 0px auto;
}

.det-1 p:first-child{
  font-family: nameFont;
  font-size: 50px;
}

.det-1 p:last-child{
  font-size: 20px;
}

.det-2{
  position: relative;
  text-align: center;
  padding: 40px;
}

.det-2 img:first-child{
  width: 100%;
}

.flower-2{
  width: 40%;
  position: absolute;
  right: -10px;  
  bottom: 0px;
}

/* Entourage css */
.entourage{
  background-color: #f4d6c1;
  padding: 30px;
}

.entourage p{
  text-align: center;
  font-family: nameFont;
  font-size: 50px;
}

.entourage-image{
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
/* Faqs Css */
.faqs{
  background-color: #F6F2E7;
  padding: 30px;
}

.faqs p{
  text-align: center;
  font-family: nameFont;
  font-size: 50px;
}

.acc-icon{
  width: 25px;
  margin-right: 15px;
}

.acc-btn{
  background-color: #f4d6c1 !important;
  height: 60px !important;
}

.timeline{
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

/* rsvp css */
.rsvp{
  background-image: url("../img/RSVP.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px;
}

.rsvp-details{
  text-align: center;
}

.rsvp-details p:first-child{
  font-family: nameFont;
  font-size: 50px;
}

.rsvp-details img{
  width: 50px;
}

.rsvp-details p:last-child{
  font-size: 20px;
}

.rsvp-details a{
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.rsvp-details button{
  width: 200px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

.timer{
  margin: 0px auto;
  width: 500px;
}

  @media only screen and (max-width: 1400px) {
    .det-1{
      padding: 80px;
    }
    .os-3{
      padding: 30px 0;
      margin: 0px auto;
    }
    .rsvp{
      padding: 20px;
    }
  }


  @media only screen and (max-width: 991px) {
    .wedding-names{
      margin: 0px auto;
      padding: 50px;
      }

    .wedding-names p{
      font-size: 50px;
      text-align: center;
    }

    .os-1 img:first-child{
      width: 100%;
    }


    .os-2 img{
      width: 100%;
    }
    .os-1 p{
      margin-right: 0px;
  }

  .os-3{
    padding: 10px 0;
    margin: 0px auto;
  }

  .os-3 p:first-child{
    font-size: 40px;
  }

  .det-1{
    padding: 10px;
  }

  .det-1 p:first-child{
    font-family: nameFont;
    font-size: 40px;
  }

  .entourage p{
    font-size: 40px;
  }
  .faqs p{
    font-size: 40px;
  }
  .det-2{
    padding: 20px;
  }
  .entourage-image{
    width: 100%;
    margin-top: 10px;
  }
  .rsvp{
    padding: 20px;
  }
  .rsvp-details p:first-child{
    font-size: 40px;
  }
  .acc-btn{
    height: 80px !important;

  }
  .timer{
    width: 100%;
  }

  }

  /* Modal CSS opening image */

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

  /* back to top btn */
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #b76046;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  


