* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  min-height: 100vh;
  background: url("hotel_vijan_mahal.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 20px;
  width: 100%;
  text-align: center;
  color: #fff;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  white-space: nowrap;   /* single line */
  text-align: center;
  opacity: 0;
  animation: dropJigJag 1.8s ease-out forwards;
}

/* Mobile font adjustment */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.6rem;
  }
}

/* TOP → PLACE with jig-jag */
@keyframes dropJigJag {
  0% {
    transform: translateY(-80px) rotate(0deg);
    opacity: 0;
  }
  30% {
    transform: translateY(15px) rotate(-1deg);
    opacity: 1;
  }
  55% {
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    transform: translateY(4px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}



.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: #b49462;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card a{
    font-size : 24px;
    
}
.card span {
  display: block;
  font-size: 0.85rem;
  margin-top: 6px;
  color: #555;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.warning {
  border: 2px solid #fff;
}

.price .amount {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
}

.note {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 6px;
}

.policy {
   background: #b49462;
  /*text-align: left;*/
}

.policy span {
  display: block;
  font-size: 0.85rem;
  margin-top: 6px;
  color: #333;
}

.tax {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #555;
}


.info-section {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-card2 {
  color: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s;
}

.info-card {
  background: rgba(180, 148, 98, 0.95); /* #b49462 */
  color: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2b1e0e;
  font-weight: bold;
}

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.warning-box {
  background: rgba(150, 45, 45, 0.95);
}



.booking-form {
  max-width: 400px;
  margin: 40px auto;
  background: #2b1e0e;
  padding: 25px;
  border-radius: 15px;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
}

.form-group small {
  font-size: 0.75rem;
  color: #2b1e0e;
}

.total-box {
  margin: 20px 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #b8996a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.center-text {
  text-align: center;
}

.hero-left h1,
.hero-left .tagline,
.hero-left .date {
  color: #fff;
}

.hero-left h1 {
  font-size: 46px;
  line-height: 1.2;
}

.hero-left .tagline {
  margin-top: 18px;
  font-size: 18px;
}

.hero-left .date {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9;
}


