@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
  animation: slideDown 1s ease;
}

header h1 {
  font-weight: 600;
  font-size: 1.6rem;
  color: white;
  padding: 10px 20px;
  background: url("10.jpg") center/cover no-repeat;
  border-radius: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


nav a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #c27802;
}



.hero {
  height: 100vh;
  background: url('10.jpg') center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  animation: fadeIn 2s ease-in-out;
}

.hero h2 {
  font-size: 2.5rem;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 10px;
  color: #c27802;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.2rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  color: rgb(100%, 20%, 5%);
  max-width: 600px;
}

.btn {
  margin-top: 20px;
  background: #c27802;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.4s;
  animation: fadeInUp 1.5s ease;
}

.btn:hover {
  background: #a96500;
  transform: scale(1.05);
}

section {
  padding: 80px 10%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.room-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card h3 {
  margin: 15px;
  color: #c27802;
}

.slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.slides img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}


.room-card p {
  margin: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
}

p.outro {
  word-spacing: 1px;
  text-align: center;
  text-size-adjust: initial;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.owners {
  height: 400px;
  width: 300px;
  display: inline-block;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40PX;
}

.owner-card {
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.owner-card img {
  padding: 2px;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

footer {
  background: #c27802;
  color: #fff;
  text-align: center;
  padding: 25px;
  margin-top: 80px;
}

.booking-section {
  padding: 100px 10%;
  background: #fffaf0;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.booking-section .title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #c27802;
  animation: glow 2s infinite alternate;
}

.booking-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 14px 15px;
  border: 2px solid #cda56a;
  border-radius: 12px;
  outline: none;
  background: transparent;
  font-size: 1rem;
  transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #c27802;
  box-shadow: 0 0 12px rgba(194, 120, 2, 0.4);
  transform: scale(1.02);
}

.input-group label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #555;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  background: #fffaf0;
  padding: 0 6px;
  font-size: 0.8rem;
  color: #c27802;
}

.fixed {
  top: -10px !important;
  left: 10px !important;
  font-size: 0.8rem !important;
  background: #fffaf0;
  padding: 0 6px;
  color: #c27802;
}

.btn-submit {
  background: #c27802;
  color: #fff;
  padding: 14px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
  animation: fadeInUp 1.2s ease;
}

.btn-submit:hover {
  background: #a96500;
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(194, 120, 2, 0.5);
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideDown {
  from {transform: translateY(-100%);}
  to {transform: translateY(0);}
}

@keyframes glow {
  from {text-shadow: 0 0 5px #c27802, 0 0 10px #ffcc80;}
  to {text-shadow: 0 0 20px #c27802, 0 0 30px #ffeb3b;}
}


/* Hamburger Icon */
.menu-btn {
  display: none;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #c27802;
}

/* Mobile Navigation */
@media (max-width: 768px) {

  header {
    padding: 15px 20px;
  }

  nav {
    position: absolute;
    top: 75px;
    right: -100%;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.3rem;
  }

  .menu-btn {
    display: block;
  }
}
/* GOOGLE MAP */
.map-box {
  margin-top: 30px;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.site-footer {
  background: #7a1f1f; /* deep maroon = trust */
  color: #f9f5ef;
  padding: 50px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  color: #c9a24d; /* soft gold */
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f9f5ef;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c9a24d;
}

.secure-text {
  margin-top: 10px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
}
.policy-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 20px;
  background: #f9f5ef;
  border-radius: 10px;
}

.policy-section h2 {
  color: #7a1f1f;
  margin-bottom: 15px;
  font-size: 24px;
}

.policy-section p,
.policy-section li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.policy-section ul {
  padding-left: 20px;
}
.why-us {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-us h2 {
  color: #7a1f1f;
  font-size: 32px;
  margin-bottom: 10px;
}

.why-sub {
  color: #555;
  margin-bottom: 50px;
  font-size: 16px;
}

.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f9f5ef;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-card span {
  font-size: 40px;
}

.why-card h3 {
  margin: 15px 0 10px;
  color: #7a1f1f;
}

.why-card p {
  font-size: 14px;
  color: #444;
}

/* MICRO ANIMATION */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}
.contact-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #7a1f1f;
  font-size: 32px;
}

.contact-sub {
  margin-bottom: 40px;
  color: #555;
}

.contact-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contact-box {
  background: #f9f5ef;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
