
/* Global Reset & Base Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 70px; /* Adjust based on your header height */
}



header {
  background-color: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;

  position: fixed;  /* ✅ change this from sticky to fixed */
  top: 0;
  left: 0;
  width: 100%;

  z-index: 999;
  transition: top 0.2s ease; /* ✅ for smooth hide/show */
}








.logo img {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.1);
}

nav.nav-center {
  display: flex;
  gap: 30px;
  font-weight: 600;
}
nav.nav-center a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
nav.nav-center a:hover {
  color: #1e90ff;
  transform: scale(1.1);
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
}

/* Responsive Navigation */
@media (max-width: 900px) {
  nav.nav-center {
    position: fixed;
    top: 60px;
    right: 0;
    flex-direction: column;
    background-color: #000;
    width: 200px;
    height: calc(100% - 60px);
    padding: 20px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  nav.nav-center.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: block;
  }
}







* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Playfair Display', serif;
}

.ABOUT {
  height: 100vh;

  background-image: url('Image/WhatsApp Image 2025-07-28 at 19.17.11_ded39fb9.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

h1 {
  font-size: 2.5rem;
  color: white;
  margin: 10px 0;
  opacity: 0;
  transition: all 1s ease;
}

/* Start positions */
.slide-from-right {
  transform: translateX(100%);
}

.slide-from-left {
  transform: translateX(-100%);
}

/* When in view */
.slide-in {
  transform: translateX(0);
  opacity: 1;
}


/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  button {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
}






.but1 {
  padding: 12px 40px;
  font-size: 1.1rem;
  
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.but1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.6s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.but1:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.but1:hover {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}









.about {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}




.about span {
  display: block;
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif; /* Modern clean font */
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600; /* Medium bold */
  letter-spacing: 0.5px;
  text-transform: none; /* ✅ Normal case */
}


/* Paragraph styling */
.about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'Segoe UI', sans-serif;
}

/* Button styling */
#about {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background-color: #000; /* Black background */
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  display: block;
  margin: 30px auto 0 auto;
}

/* ✨ Animated glowing border */
#about::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6a00, #ee0979, #ff6a00, #ee0979);

  


  z-index: -1;
  background-size: 400% 400%;
  animation: rotateBorder 3s linear infinite;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ✨ Glow shows only on hover */
#about:hover::before {
  opacity: 1;
}

/* ✨ Slide effect on hover */
#about:hover {
  transform: translateX(-10px);
}

/* 🔁 Border animation keyframes */
@keyframes rotateBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* ✅ Mobile/Tablet Responsive */
@media (max-width: 768px) {
  .about {
    padding: 25px 15px;
    margin: 20px 10px;
  }


  .about span {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .about p {
    font-size: 16px;
    line-height: 1.6;
  }

  #about {
    font-size: 15px;
    padding: 10px 20px;
  }
}






/* Set dark body, white image section */
body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: 'Segoe UI', sans-serif;
}

.room-gallery {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
}

.room-gallery h2 {
  font-size: 32px;
  color: black;
  font-weight: 600;
  margin-bottom: 30px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-box {
  flex: 1 1 calc(25% - 20px); /* 4 images in PC */
  max-width: calc(25% - 20px);
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Tablet view: 2 per row */
@media (max-width: 992px) {
  .image-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobile view: 1 per row */
@media (max-width: 600px) {
  .image-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .image-box img {
    height: 200px;
  }
}









.image-text-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  margin: 0;
}

#image-box {
  flex: 1.2; /* slightly larger image */
  min-width: 350px;
  max-height: 100%;
}

#image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facilities-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.description {
  font-size: 14px; /* smaller font */
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: left;
}

.facility-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #222;
  background: #f5f5f5;
  padding: 10px 15px;
  border-radius: 8px;
  flex: 1 1 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} 

.facility-item i {
  color: #007bff;
  font-size: 20px;
}


button {
  width: fit-content;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #007bff; /* Default blue */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

button:hover {
  background-color: green;  /* Green on hover */
  color: white;             /* Optional: black text on hover */
}



/* Book Now Button */
.book-now-button {
  background-color: #00ffcc;
  color: #000;
  box-shadow: 0 0 15px #00ffcc88;
}

.book-now-button:hover {
  background-color: #00ccaa;
  box-shadow: 0 0 20px #00ccaa;
}



/* Responsive */
@media screen and (max-width: 768px) {
  .image-text-section {
    flex-direction: column;
  }

  .text-box {
    padding: 20px;
  }
/* 
  .facilities-heading {
    font-size: 22px;
    text-align: center;
  } */

.facilities-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 500; /* You can change 200 to 700 based on thickness */
  text-align: center;
  color: #2c3e50;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}



  .description {
    text-align: center;
    font-size: 15px;
    color: #000;
  }

 

  button {
    margin: 0 auto;
  }
}


.facility-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
}

.facility-item img {
  width: 32px;
  height: 32px;
}















.feedback-section {
  background-color: #000000;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.feedback-container {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}



.feedback-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-style: italic;
}



.feedback-box {
  background: rgb(0, 0, 0);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feedback-text {
  font-size: 16px;
  color: #ffffff; /* changed to black */
  line-height: 1.9;
  margin-bottom: 30px;
}

.feedback-signature {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}






/* Import a clean font (optional) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

.gallery-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.gallery-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  text-align: center;
  color: #003344;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  flex: 1 1 300px;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: #f1f1f1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
















.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.map-box {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 600px;
}

.info-box {
  flex: 1 1 300px;
  min-width: 280px;
}

.contact-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #003344;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin-right: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s;
}

.call-btn {
  background-color: #007BFF;
  color: white;
}

.call-btn:hover {
  background-color: #0056b3;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #1da851;
}






/* Black full background for entire section */
.contact-section {
  background-color: #000000; /* full black */
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff; /* default white text on black */
}

/* Centered white container box */
.contact-container {
  background-color: #000000; /* white container */
  color: #222; /* dark text inside container */
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Heading - centered above container */
.contact-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #ffffff; /* white heading on black background */
  margin-bottom: 50px;
  letter-spacing: 1.5px;
}

/* Left side content */
.contact-info {
  flex: 1 1 400px;
  min-width: 300px;
}

.address-block, .phone-block {
  margin-bottom: 30px;
}

.address-block h3,
.phone-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.address-block p,
.phone-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
}

.phone-number a {
  font-size: 20px;
  font-weight: 700;
  color: #02a926;
  text-decoration: none;
  transition: color 0.3s;
}

.phone-number a:hover {
  color: #fdfeff;
}

/* Buttons */
.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn:hover {
  background-color: #0056b3;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
}

/* Arrow styling and animation */
.arrow {
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  top: 1px;
}

.btn:hover .arrow {
  transform: translateX(6px);
}

/* Right side map box */
.map-box {
  flex: 1 1 500px;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .contact-info, .map-box {
    min-width: 100%;
  }

  .contact-buttons {
    justify-content: center;
  }
}



.site-footer {
  background-color: #f8f8f8; /* off-white */
  color: #333;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
  position: relative;
  bottom: 0;
  width: 100%;
}



.social-media {
  margin-top: 20px;
  text-align: center;
}

.social-media a img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-media a img:hover {
  transform: scale(1.2);
}






/* 

.view-more-container {
  text-align: center;
  margin-top: 40px;
}

.view-more-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.view-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.view-more-button .arrow {
  margin-left: 8px;
  transition: margin-left 0.2s ease;
}

.view-more-button:hover .arrow {
  margin-left: 12px;
}




 */


















.view-more-container {
  text-align: center;
  margin-top: 60px;
}

.view-more-button {
  display: inline-block;
  padding: 14px 40px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #7F00FF, #E100FF); /* royal violet gradient */
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(127, 0, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.view-more-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(127, 0, 255, 0.5);
}

.view-more-button .arrow {
  margin-left: 10px;
  transition: margin-left 0.3s ease;
  display: inline-block;
}

.view-more-button:hover .arrow {
  margin-left: 16px;
}
