/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");

:root {
  --night: #0c1720;
  --night-2: #16283a;
  --paper: #f6efe0;
  --card: #fffdf8;
  --ink: #17222c;
  --muted: #5c6a76;
  --gold: #c68a2e;
  --gold-dark: #9c6a1d;
  --rust: #9c3a26;
  --line: #e3dabf;
  --shadow: 0 18px 40px rgba(12, 23, 32, 0.16);
}

* {
   margin: 0; 
   padding: 0; 
   box-sizing: border-box; 
   
}


body { 
  font-family: 'Times New Roman', Times, serif;
 }

/* Navbar */
.nav-bar {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 53px;
  background-color: var(--night);
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(198, 138, 46, 0.35);
}

.logo {
  flex: 1;
  font-size: 34px;
  margin-left: 20px;
  font-family: Satisfy;
  color: #f6efe0;
}

ul.menu {
  flex: 2;
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  justify-content: flex-end;
  margin-right: 20px;
}

.menu li {
  flex: none;
  font-size: 16px;
  font-family: "Barlow Condensed";
  text-align: center;
}

.menu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #d8dfe6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 17px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu li a:hover,
.menu li a:focus-visible {
  color: var(--gold);
  background-color: rgba(198, 138, 46, 0.1);
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  position: fixed;
  margin-top: 12px;
  right: 20px;
  font-size: 30px;
  color: #f6efe0;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  line-height: 1;
}

.menu-toggle:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Image Slider */
#Home { 
  width: 100%; 
  overflow: hidden;
 }

.slider { 
  width: 100%; 
  position: relative; 
  overflow: hidden;
  }


.slider input {
   display: none; 
}

.sider input:hover{
  cursor: pointer;
}

.slides{
  display: flex;
  border: 2px solid black;
  width: 800%;
  will-change: transform;
}

.slides .img {
  width: 100%;
  height: 670px;
  border: 5px solid black;
  object-fit: cover;
  border: 2px solid black;
  animation: slide 20s ease-in-out infinite;
}

@keyframes slide {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(0%); }

  20%  { transform: translateX(-100%); }
  40% { transform: translateX(-100%); }

  40%  { transform: translateX(-200%); }
  60%  { transform: translateX(-200%); }

  60%  { transform: translateX(-300%); }
  80%  { transform: translateX(-300%); }

  80%  { transform: translateX(-400%); }
  100%  { transform: translateX(-400%); }

}

#s1:checked ~ .slides { margin-left: 0%; }
#s2:checked ~ .slides { margin-left: -100%; }
#s3:checked ~ .slides { margin-left: -200%; }
#s4:checked ~ .slides { margin-left: -300%; }
#s5:checked ~ .slides { margin-left: -400%; }
#s6:checked ~ .slides { margin-left: -500%; }

/* Dot Controls */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  position: relative;
}


.dots label {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  transition: 0.3s;
}

.dots label:hover 
{ 
  background: gold; 
}

/* <!Phone and Whatsapp --> */
.contact-icons {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  gap: 20px;
  z-index: 999;
}

.contact-icons a img {
  width: 50px;
  height: 50px;
  background-color: black ;
  border-radius: 20%;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: bounce 1s ease-in-out 2s infinite;
}

.contact-icons a img:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);

  }
}

/* ======================== Places Section ========================= */
/* Places Section */
#places { 
  padding: 50px 20px; 
}


.places-text {
    text-align: center;
    margin-bottom: 40px; 
    font-size: 20px;
}


.places-text h2 {
   font-size: 50px; 
   color: #003d9e;
}

.places-text p {
  font-size: 25px;
  font-weight: 700;
  font-style: oblique;
  font-family: 'Times New Roman', Times, serif;
  color: #c4c408;
  margin-top: 10px;
  text-align: left;
  margin-left: 60px;
}

.places-text p span {
  color: rgb(231, 15, 15);
}

.places-text p strike {
  color: rgb(227, 25, 11);
}

.places-text p i {
  color: rgb(8, 156, 57);
  margin-left: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding: 0 40px;
}


.card {
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 2px solid gray;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.2);
  height: 550px;
}

.card:hover{
  border: 2px solid orange;
}


.card img { 
  width: 100%; 
  height: 300px; 
  border-radius: 10px; 
  border: 2px solid black;
}

.card img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card a {
  text-decoration: none;
  font-size: 20px;
  color: darkblue;
  font-weight: bold;
}
.card a:hover {
  text-decoration: underline;
  color: orange;
}

.card h2{
  font-size: 25px;
  padding: 15px;
  font-family: 'Times New Roman', Times, serif;
}

.card p{
  padding: 10px;
}


/*=========================About Us=========================*/
#about {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 100px;
}


.about-img {
  flex: 1;
}

.about-img img {
  width: 550px;
  height: 700px;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
  border: 2px solid black;
}

.about-text {
  flex: 1;
  /*width: 100px;*/
  display: flex;
  flex-flow: column wrap;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 500;
}

.about-text small{
  font-size: 25px;
}

.about-text p,
.about-text input,
.about-text a {
  flex: 1;
  font-family: Roboto;
  font-size: px;
  color:#000;
}

.about-text small {
  color: #f8ab07;
  font-size: 22px;
  font-weight: 900;
}

.about-text h2 {
  flex: 1;
  font-family: Barlow Condensed;
  font-size: 60px;
  color: #191d34;
  width: 450px;
}

.about-text label {
  padding-bottom: 10px;
  color: #506172;
  font-weight: bolder;
  font-family: Roboto;
  letter-spacing: 1px;
}

.about-text p {
  width: 500px;
  line-height: 30px;
  color: #506172;
  font-weight: bolder;
  padding: 50px 0;
}

.about-text a {
  background-color: #fff;
  border: 2px solid #014b85;
  text-decoration: none;
  border-radius: 5px;
  width: 180px;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  color: #014b85;
  font-weight: bolder;
  font-size: 14px;
}

.about-text a:hover {
  background-color: #014b85;
  color: #fff;
  border: 2px solid black ;
}

/* --------------------------------services---------------------------- */
/*Service Section*/
/* Services Section Styling */
/*Service Section*/
#services{
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 60px 20px;
}

.services-head {
  text-align: center;
  margin-bottom: 48px;
}

.services-head span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #c9a227;
  margin-bottom: 6px;
}

.services-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #003d9e;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.service-item {
  position: relative;
  background: #fff;
  border-radius: 22px 22px 8px 8px;
  padding: 100px 34px 34px;
  box-shadow: 0 18px 40px -18px rgba(11,46,89,0.35);
  transition: transform .4s, box-shadow .4s;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(11,46,89,0.45);
}

.card-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 76px;
  background: #0b2e59;
  border-radius: 22px 22px 0 0;
  clip-path: polygon(
    0 100%, 0 42%, 12% 68%, 24% 20%, 38% 62%,
    52% 12%, 66% 58%, 80% 24%, 92% 50%, 100% 30%, 100% 100%
  );
}

.card-band::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0 100%, 0 42%, 12% 68%, 24% 20%, 38% 62%,
    52% 12%, 66% 58%, 80% 24%, 92% 50%, 100% 30%, 100% 100%
  );
  background: linear-gradient(180deg, rgba(201,162,39,0.35), transparent 55%);
}

.icon-medallion {
  position: absolute;
  top: 40px;
  left: 34px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(201,162,39,0.6);
  z-index: 2;
}

.icon-medallion i {
  font-size: 26px;
  color: #0b2e59;
}

.service-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0b2e59;
  /* margin-bottom: 6px; */
  margin-top: 70px;
}

.service-item .tagline {
  font-size: 15px;
  color: #5a6572;
  font-style: italic;
  margin-bottom: 22px;
}

.row-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.row-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1c232c;
}

.row-list li i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f6f2ea;
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 13.5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0b2e59;
  background: #eef2f8;
  border: 1px solid #d8e0ec;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Accommodation — full width feature card */
.service-item.accommodation {
  grid-column: 1 / -1;
  padding-top: 100px;
}

.accommodation h3 { 
  font-size: 32px; 
  margin-top: 5px;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 26px;
}

.acc-block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0b2e59;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0e6c8;
}

.acc-block h4 i {
  color: #c9a227;
  font-size: 15px;
}

.acc-block .pill-row .pill {
  background: #f6f2ea;
  border-color: #eee0c0;
}
/* -----------------------Review----------------- */
/* Write Review Section */
#write-review { background: #f3f8ff; padding: 30px 30px; }

#write-review h2{
  font-family: Barlow Condensed;
  font-size: 30px;
  color: #003d9e;
  text-align: center;
  padding-bottom: 20px;
}
.review-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #FAFAFA;
  padding: 40px 35px;
  border-radius: 18px;
  border: 0.1px solid black;
  box-shadow: 0 10px 30px rgba(29, 28, 28, 0.1);
  text-align: center;
}

.review-form-wrap h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  color: #003d9e;
  margin-bottom: 8px;
}

.review-form-wrap > p { color: #1f2022; margin-bottom: 25px; }

#reviewForm { display: flex; flex-direction: column; gap: 14px; text-align: left; }

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: 'Times New Roman', Times, serif;
}

#reviewForm textarea { resize: vertical; }

#reviewForm button {
  background: #003d9e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: 0.3s;
}

#reviewForm button:hover { background: #c9a227; }

.review-note { margin-top: 18px; font-size: 14px; color: #5a6572; }
.review-note a { color: #003d9e; font-weight: bold; text-decoration: none; }
.review-note a:hover { text-decoration: underline; color: #c9a227; }

/* All Reviews Page */
#all-reviews { max-width: 1100px; margin: 0 auto; padding: 70px 20px 100px; }

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.reviews-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  color: #003d9e;
}

.add-review-btn {
  background: #c9a227;
  color: #0b2e59;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  transition: 0.3s;
}

.add-review-btn:hover { background: #003d9e; color: #fff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-name {
  font-weight: 700;
  color: #0b2e59;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
}

.review-stars { font-size: 14px; }
.review-comment { color: #333; line-height: 1.5; margin-bottom: 14px; }
.review-date { font-size: 13px; color: #999; }

.no-reviews {
  text-align: center;
  color: #5a6572;
  font-size: 18px;
  grid-column: 1 / -1;
  padding: 40px 0;
}


/* 📱 Responsive */
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-head h2 { font-size: 34px; }
}

@media (max-width: 500px) {
  .service-item { padding: 64px 22px 28px; }
  .service-item h3 { font-size: 24px; }
  .icon-medallion { width: 54px; height: 54px; left: 22px; top: 34px; }
  .icon-medallion i { font-size: 22px; }
}
/*  ======================== Comment and Review Section ========================= */
/* Review Section */
/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
  .review-container {
    max-width: 1200px;
  }

  .box {
    padding: 30px;
  }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .review-container {
    max-width: 900px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .review-container {
    flex-direction: column;
    max-width: 700px;
  }

  .box {
    padding: 20px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  #review-section {
    padding: 30px 15px;
  }

  .box h2 {
    font-size: 18px;
  }

  textarea {
    height: 80px;
  }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
  .box {
    padding: 15px;
  }

  textarea, select {
    font-size: 13px;
    padding: 10px;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
}
/* ======================== Comment and Review Section ========================= */ 
    
/* Footer */
/*===============Footer===================*/
#contact{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 620px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
} 
  
#contact h1{
  color:#2668d0;
}

#contact h3{
  color: rgb(240, 24, 24);
  font-size: 25px;
}

#contact::before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(9, 9, 9, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#contact .links {
  position: relative;
  color: #fff;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.links ul {
  list-style-type: none;
}

.links h3 {
  font-family: Barlow Condensed;
  font-weight: normal;
  font-size: 23px;
  margin-bottom: 15px;
}

.links li {
  font-family: Roboto;
  cursor: pointer;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 900;
  margin-left: 50px;
}

.links li:hover{
  font-size: 19px;
}

.links li a:hover{
  font-size: 18px;
}

.links li a{
  text-decoration: none;
  margin-right: 40px;
  font-size: 17px;
  font-weight:500;
  color: white;
  text-align: justify;
}

.links li a:hover{
  color: #ffa801;
}

.links li:hover {
  color: #ffa801;
}

/* Footer */
  footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
  }

  footer p {
      margin: 0;
      font-size:15px;
      color: whitesmoke;
  }

/* ======================== FULL RESPONSIVE DESIGN ======================== */

/* 🔹 Large Laptop (Below 1300px) */
@media (max-width: 1300px) {
  .about-img img { width: 450px; height: 600px; }
  .about-text h2 { font-size: 48px; }
  .places-text h2 { font-size: 42px; }
}

/* 🔹 Tablet Mode (Below 992px) */
@media (max-width: 992px) {

.menu-toggle { display: block; }

  .nav-bar {
    justify-content: space-between;
    padding: 0 20px;
  }

  ul.menu {
    position: absolute;
    top: 53px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: var(--night);
    margin: 0;
    border-top: 1px solid rgba(198, 138, 46, 0.35);
  }

  ul.menu.active { display: flex; }

  .menu li {
    text-align: left;
    padding: 4px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu li a { font-size: 16px; }


  /* Slider */
  .slides .img { height: 450px; width: 15%; animation: slide 5 ease-in-out infinite;}

  /* About */
  #about { flex-direction: column; gap: 25px; padding: 60px 20px; }
  .about-img img { width: 100%; height: auto; }
  .about-text h2 { width: 100%; font-size: 40px; text-align: center; }
  .about-text p { width: 100%; padding: 15px 0; text-align: center; }
  .about-text a { margin: auto; }

  /* Services */
  .services { gap: 30px; width: 100%; }
  .service-item { height: auto; padding: 25px 20px; width: 100%; max-width: 100%; }

  /* Footer */
  #contact { height: auto; padding: 20px 0; flex-direction: column; text-align: center;}
}

/* 🔹 Mobile Portrait (Below 600px) */
@media (max-width: 600px) {
  /* Logo */
  .logo { font-size: 28px; }

  /* Header Slider */
  .slides .img { height: 300px;}

  /* Place Cards */
  .places-text p{ font-size: 18px}
  .cards { padding: 0 10px; grid-template-columns: 1fr; }
  .card { height: auto; padding: 10px; }
  .card img { height: 220px; }

  /* About Section */
  .about-text h2 { font-size: 32px; }
  .about-text small { font-size: 18px; }
  .about-text a { width: 150px; font-size: 12px; padding: 14px; }

  /* Services */
  .service-item h2 { font-size: 26px; }
  .service-item p { font-size: 16px; }
  .service-item { padding-bottom: 30px;}

  /* Footer */
  .links h3 { font-size: 18px; }
  .links li { font-size: 16px; margin-left: 0; }

  footer p{
    font-size: 14px;
  }
}

@media (max-width: 412px){
  .service-item { padding-bottom: 30px;}
}

/* 🔹 Very Small Phones (Below 390px) */
@media (max-width: 390px) {
  .logo { font-size: 24px; }
  .about-text h2 { font-size: 28px; }
  .service-item h2 { font-size: 22px; }
}