/* ====== header ====== */

header {

  /* ======= top header ====== */
  .top-header {
    background-color: var(--black);
    padding: 10px 0px;
    color: #fff;

    .container {
      display: flex;
      justify-content: space-between;
    }

    .loge-details {
      display: flex;
      gap: 20px;
    }

    i {
      margin-right: 10px;
    }

    a {
      color: #fff;
      font-size: 14px;
    }

    .social-media {
      i {
        font-size: 20px;
      }
    }
  }

  /* ======== bottom header ===== */

  .bottom-header {

    /* padding: 15px 0px; */
    .menu-icon {
      /* width: 0; */
      display: none;
    }

    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      a {
        display: flex;
      }

      img {
        width: 145px;
      }
    }

    .primary-menu {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      padding: 0px 15px;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--black);
    }

    nav a:hover {
      color: var(--red);
    }

    .active {
      color: var(--red);
    }

    .book-btn a {
      height: 100%;
      display: inline-block;
      background-color: var(--yellow);
      padding: 35px;
      color: var(--white);
      text-transform: uppercase;
      /* font-weight: 600; */
    }
  }
}

/* ======== banner ======== */

.banner {
  padding: 200px 0px;

  background-position: center;
  background-size: cover;
  object-fit: cover;

  background-size: cover;
  animation: change 15s infinite ease-in-out;
  transition: all .3s ease-in-out;

  .banner-content {
    width: 100%;
    max-width: 80%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  p {
    width: 65%;
    color: var(--white);
  }
}

@keyframes change {

  0% {
    background: url(../upload/banner.jpg);
    background-size: cover;
  }

  100% {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner05.jpg);
    background-size: cover;
    /* background-position: center; */
  }
}


/* ========== About us ====== */

.about {
  padding: 70px 0px 80px;

  .about-title {
    display: flex;
    gap: 50px;
    align-items: center;

    .title-img {
      width: 50%;
    }

    .title {
      width: 50%;
      margin-left: 100px;

      h3 {
        position: relative;
        transition: all .2s ease-in-out;
        cursor: pointer;
      }

      h3:hover {
        color: var(--yellow);
      }

      h3:before {
        content: "";
        position: absolute;
        top: 30px;
        right: calc(100% + 15px);
        width: 10%;
        height: 1px;
        background-color: #1c1c1c;
      }
    }
  }

  .about-content {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;

    .main-content {
      width: 40%;
      display: flex;
      gap: 20px;
      flex-direction: column;
    }

    .amenities {
      width: 60%;
      position: relative;
    }

    .top-amenities {
      display: flex;
      justify-content: space-around;
    }

    .bottom-amenities {
      position: absolute;
      bottom: -95px;
      left: 75px;
    }

  }

}

/* ======== room type ======= */

.room {
  margin-top: 60px;
  /* padding: 80px 0px; */

  .room-types {
    display: flex;
    gap: 5px;
  }

  .room-box {
    width: 100%;
    max-width: 33.33%;
    cursor: pointer;
    position: relative;

    p {
      color: var(--white);
    }
  }

  img {
    display: flex;
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .room-name {
    height: 40%;
    width: 100%;
    padding: 45px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgba(45, 63, 75, 0.79) 100%);
    display: flex;
    align-items: end;
    transition: all 0.3s ease 0.15s;
    color: var(--white);
  }

  h5 {
    color: var(--white);
  }

  .room-details {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    height: 100%;
    width: 100%;
    padding: 40px;
    text-align: center;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease 0.15s;
    transform: translateX(-100%);
    z-index: -1;
    color: var(--white);
  }

  .room-box:hover .room-details {
    opacity: 1;
    transform: translateX(0);
    z-index: 0;
  }

  .room-box:hover .room-name {
    opacity: 0;
  }

  .room-inner {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 97%;
  }

  .room-detail:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

  .room-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;

    ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    ul li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

  }
}


/* ========= choose img ====== */

.choose {
  padding: 80px 0px;

  .container {
    display: flex;
    gap: 60px;
    align-items: center;

    .choose-img {
      width: 50%;
      position: relative;
    }

    .choose-content {
      width: 50%;
    }

    .choose-img-row {
      display: flex;
      gap: 15px;
      position: relative;
    }

    img {
      display: flex;
      width: 100%;
    }

    .choose-number {
      padding: 70px 30px;
      background-color: var(--yellow);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-bottom: 15px;
      gap: 15px;

      .number-img {
        img {
          max-width: 70px;
        }
      }

      a {
        font-size: 22px;
        color: var(--white);
        font-weight: 500;
      }

      span {
        display: block;
        font-family: Bitter;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
      }
    }

    .email {
      margin: 15px 0px 0px 0px;
      background: var(--black);

      a {
        word-break: break-all;
        text-align: center;
        font-size: 20px;
      }
    }

    .img-col-2 {
      margin-top: 30px;
    }

  }

  .round-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 100px;
    z-index: 1;

    img {
      width: 100%;
      animation: rotate-infinite 15s linear infinite;
    }
  }

  .choose-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ======== testimonial ============ */

.testimonial {
  display: flex;
  background-color: #f8f5f0;
  gap: 50px;
  align-items: center;
  /* margin: 100px 0; */

  .testimonial-img {
    width: 50%;
  }

  .testimonial-content {
    padding: 80px 0px;
    background: url(../upload/shape.png);
    background-repeat: no-repeat;
    background-position: right;
    /* background-size: contain; */
    width: 50%;
  }

  .testimonial-img {
    img {
      width: 100%;
      display: flex;
    }
  }

  .testi-content-box {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-items {
    margin-top: 20px;
    overflow-x: hidden;

    p {
      font-style: italic;
    }

    .author-content {
      position: relative;
      font-size: 20px;
      font-weight: 500;
      color: var(--yellow);
      margin-top: 20px;
      display: inline-block;
    }
  }
}

/* ============ cta =========== */

.cta {
  padding: 80px 0px;

  .container {
    max-width: 1200px;
  }

  .main-cta {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../upload/image08.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
  }

  img {
    width: 100%;
  }

  .cta-img {
    img {
      width: 100%;
      display: flex;
    }
  }

  h3 {
    padding-left: 30px;
    border-left: 4px solid var(--yellow);
    font-size: 40px;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .group-btn {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .cta-call {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .call-icon img {
    width: 40px;
  }

  .call-content {
    span {
      display: block;
    }

    a {
      font-size: 20px;
      color: var(--black);
      font-weight: bold;
    }

    a:hover {
      color: var(--yellow);
    }
  }
}


/* ========= footer ======== */

footer {
  padding: 60px 0px 0px;
  background-color: var(--black);
  color: var(--white);

  .footer-logo {
    img {
      width: 150px;
    }
  }

  p {
    color: var(--white);
    /* font-size: 14px; */
  }

  a {
    color: var(--white);
    word-break: break-all;
  }

  h4 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .top-footer .container {
    display: flex;
    gap: 20px;
    padding-bottom: 40px;
  }

  .footer-about {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 30%;
  }

  .social-media {
    i {
      font-size: 20px;
    }
  }

  .useful-link {
    width: 15%;
    margin-top: 20px;

    nav {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
  }

  .contact-info {
    margin-top: 20px;
    width: 30%;

    .contact-box {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
    }
  }

  .footer-gallery {
    width: 25%;
    margin-top: 20px;

    .gallery-item {
      /* margin-top: 15px; */
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    img {
      width: 25%;
      border-radius: 5px;
    }
  }

  .copy-right {

    .container {
      padding: 30px 20px 15px;
      text-align: center;
      border-top: 1px solid #cccccc78;
      font-size: 14px;
    }
  }
}


/* ============ Contact Us page ======== */

#contact-page {

  .inner-banner {
    background: url(../upload/contact-bg.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;

  }

  .lodge-contact {
    padding: 80px 0px;

    .container {
      display: flex;
      gap: 40px;
    }
  }

  .contact-text {
    width: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form {
    width: 100%;
    max-width: 50%;
  }


  .lodge-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;

    .box {
      display: flex;
      gap: 15px;
      width: 100%;
      max-width: 70%;
    }

    .box-icon i {
      padding: 20px;
      background: var(--yellow);
      color: var(--white);
      font-size: 20px;
    }

    .box-text {
      span {
        font-weight: bold;
      }

      p a {
        color: #706e6e;
        font-size: 16px;
      }

      p a:hover {
        color: var(--yellow);
      }
    }
  }

  .contact-form {
    form {
      padding: 48px 32px;
      background-color: #F8F5F0;
      display: flex;
      flex-direction: column;
      gap: 15px;
      /* align-items: self-start; */
    }

    input,
    textarea {
      padding: 10px 15px;
      background-color: #fff;
      /* padding-inline: 1.5rem; */
      border: 1px solid #ced4da;
      appearance: none;
      border-radius: 0.25rem;
      transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }



    .name,
    .tel-mail {
      display: flex;
      gap: 20px;

      input {
        width: 100%;
        max-width: 50%;
      }
    }

    .subject input {
      width: 100%;
      max-width: 100%;
    }

    .message textarea {
      width: 100%;
      max-width: 100%;
    }

    .form-submit {
      width: 160px;
      display: inline-block;
      padding: 12px 30px;
      color: var(--white);
      background-color: var(--red);
      transition: all .2s ease-in-out;
      font-size: 16px;
    }

    .form-submit:hover {
      background-color: var(--yellow);
    }
  }

  input:focus {
    box-shadow: none;
    border-color: #E8A41D;
  }

  .map {
    iframe {
      width: 100%;
    }
  }
}

/* ========== About us page ========= */

#about-page {

  .inner-banner {
    background: url(../upload/banner03.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .about-main {
    padding: 80px 0px;
  }

  .about-data {
    img {
      width: 100%;
    }

    display: flex;
    gap: 40px;

    .about-content {
      width: 100%;
      max-width: 60%;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .about-img {
      width: 100%;
      max-width: 40%;

      img {
        max-width: 450px;
        border-radius: 10px;
      }
    }
  }

  .about-data:nth-child(2) {
    margin-top: 30px;
    flex-direction: row-reverse;
  }

  .about-data:nth-child(3) {
    margin-top: 30px;
    /* flex-direction: row-reverse; */
  }
}

/* ============= Blog page ========== */

#blog-page {
  .inner-banner {
    background: url(../upload/banner04.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .main-blog .container {
    display: flex;
    gap: 40px;
  }

  .main-blog {
    padding: 80px 0px;

    img {
      width: 100%;
      border-radius: 6px;
    }
  }

  .latest-post-section {
    width: 100%;
    max-width: 30%;
  }

  .blog-section {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap;
    width: 100%;
    max-width: 70%;
  }

  .blog-section .blog-items { 
    width: 100%;
    max-width: 45%;
    padding: 15px;
    box-shadow: 0px 0px 20px 0px #cccccc9c;
    border-radius: 10px;
  }

  .blog-content {
    margin-top: 15px;
  }

  .blog-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  .date {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;

    i {
      color: var(--yellow);
    }

  }

  .blog-btn {
    a {
      color: var(--red);
    }
  }
}


/* ============== latest post ========= */

.latest-post {
  .latest-post-title {
    padding: 0px 0px 25px;
    border-bottom: 1px solid #ccc;
  }

  .latest-post-items {
    margin-top: 30px;
  }

  .recent-post a {
    display: flex;
    gap: 20px;
  }

  .media-img img {
    max-width: 150px;
    border-radius: 5px;
  }

  .post-title p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .date {
    color: var(--yellow);
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

/* ============ single post =========== */

#single-post {
  .inner-banner {
    background: url(../upload/contact-bg.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .main-post {
    padding: 80px 0px;

    .container {
      display: flex;
      gap: 40px;
    }
  }

  .post-data {
    width: 100%;
    max-width: 70%;

  }

  .post-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 80px;
  }

  .latest-post-section {
    width: 100%;
    max-width: 30%;
  }
}

.leave-comment {
  padding: 40px 0px 0;

  form {
    margin-top: 20px;
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .name-mail {
    display: flex;
    gap: 20px;

    input {
      padding: 10px;
      width: 50%;
    }
  }

  textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  .form-btn {
    input {
      width: 160px;
      background-color: var(--red);
      padding: 12px 30px;
      border: none;
      color: var(--white);
      font-size: 16px;
    }
  }
}

/* ========== gallery page ======== */

#gallery-page {
  .inner-banner {
    background: url(../upload/banner07.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .gallery {
    padding: 80px 0px;

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-gap: 20px;
      align-items: stretch;
    }

    .grid .gallery-img img {
      border: 1px solid #ccc;
      box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
      max-width: 100%;
    }

    .gallery-img {
      overflow: hidden;
      transition: all .2s ease-in-out;
    }

    .gallery-img:hover img {
      transform: scale(1.1);
      transition: all .2s ease-in-out;
    }
  }
}

/* ============= room page =========== */

#room-page {
  .inner-banner {
    background: url(../upload/banner06.jpg);
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  img {
    width: 100%;
  }

  .main-room {
    padding: 80px 0px;
  }

  .room-item {
    display: flex;
    gap: 40px;
  }

  .room-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
  }

  .room-item-img {
    text-align: center;
    width: 40%;

    img {
      width: 100%;
      max-width: 350px;
      border-radius: 15px;
    }
  }

  .amenities {
    ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    ul li {
      display: flex;
      gap: 15px;
    }
  }

  .price {
    font-size: 20px;

    b {
      margin-right: 10px;
    }
  }

  .room-item:nth-child(2) {
    flex-direction: row-reverse;
    margin: 60px 0px;

    .room-item-img {
      text-align: start;
    }
  }

  .room-item:nth-child(4) {
    flex-direction: row-reverse;
    margin: 60px 0px;

    .room-item-img {
      text-align: start;
    }
  }
}

.meta-heading {
  display: none;
}
.blog-content h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 10px 0px;
}
.post-title h6{
  font-size: 14px;

}
.media-img {
  align-items: center;
  display: flex;
}
.blog-heading {
  font-size: 26px;
  font-weight: 600;
}

.blog-img{
  img{
    width: 100%;
  }
}
.media-body {
  width: 100%;
}