/* General Css */
html {
    scroll-behavior: smooth;
  }
  @font-face {
    font-family: ourStory;
    src: url(../font/GreatVibes-Regular.woff);
  }
.container-image{
  border-radius: 0 !important;
}
.card{
  border: none !important;
}
  /* Navigation css */

.navbar{
    background-color: #7f3800 !important;
  }
  
  .navbar-brand{
    display: none !important;
  }
  
  .nav-link{
    font-weight: bold !important;
    color: #fff !important;
  }

/* Hero section */
.hero-image {
    background-image: url("../img/home.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
  }

  .wedding-logoname{
    margin: 0px auto;
    padding: 80px;
    text-align: center;
  }

  .wedding-logo img{
    width: 150px;
  }

  .wedding-name img{
    width: 400px;
  }
/* Hero section end */
/* image-1 section */
.image-1 {
    padding: 0 !important;
}
/* image-1 section end*/
/* details css */
.details{
  background-color: #fff;
  color:#7f3800;
}

.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%;
}
/* End of details css */
/* Entourage css */
.entourage{
  background-color: #fff;
  padding: 30px;
  color: #7f3800;
}

.entourage p{
  text-align: center;
  font-family: nameFont;
  font-size: 50px;
}

.entourage-image{
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
/* End of Entourage css */
/* image-2 section */
.image-2 {
  padding: 0 !important;
}
.timer{
  margin: 0px auto;
  width: 75%;
  
}

.our-story{
  padding: 20px;
  text-align: center;
  color:#7f3800;
}

.our-story h2{
  font-family: ourStory;
}
.our-story p{
  font-size: 20px;
}

.zoom{
  padding: 20px;
  text-align: center;
}
.zoom h3{
  font-family: ourStory;
  color:#7f3800;
}
.zoom p{
  color: #000;
  font-size: 20px;
}


/* image-2 section end*/


@media only screen and (max-width: 1400px) {
  .det-1{
    padding: 80px;
  }
}

@media only screen and (max-width: 991px) {
    .navbar-brand{
    display: block !important;
    padding: 0 !important;
    }
      
    .wedding-logoname{
    margin: 0px auto;
    padding: 20px;
    }
  
    .wedding-name img{
    width: 100%;
    }
    .det-1{
      padding: 10px;
    }
  
    .det-1 p:first-child{
      font-family: nameFont;
      font-size: 40px;
    }
    .det-2{
      padding: 20px;
    }
    .entourage p{
      font-size: 40px;
    }
    .entourage-image{
      width: 100%;
      margin-top: 10px;
    }
    .timer{
      width: 90%;
    }
    .zoom p{
      color: #000;
      font-size: 14px;
    }
}

/* 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: #7f3800;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
  }

  
  