/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: url('int15.jpeg') no-repeat center center fixed;
  background-size: cover;
  background-color: #f5f5f5;
}

/* === Header and Navigation === */
.header-small {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #e6c200;
  border-bottom: 2px solid #ffd700;
}

.nav-links a.active {
  color: #000;
  border-bottom: 2px solid #ffd700;
  font-weight: 600;
}

/* === Booking Page Layout === */
.booking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
}

.booking-box {
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 500px;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.booking-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.booking-box label {
  display: block;
  font-weight: 500;
  text-align: left;
  margin-bottom: 0.5rem;
}

.booking-box input[type="text"],
.booking-box textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  background-color: #fff;
  cursor: pointer;
  resize: vertical;
}

/* === Price Block Styling === */
#pricing {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: left;
  animation: fadeSlideIn 0.6s ease-in-out;
  border-left: 4px solid #ffd700;
}

#pricing del {
  color: #888;
  font-size: 0.95rem;
}

#discount-label {
  display: block;
  font-weight: 700;
  color: red;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

#night-count,
#total-amount {
  font-weight: bold;
  color: #222;
}

/* === CTA Button === */
.booking-box .cta {
  background-color: #ffd700;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}

.booking-box .cta:hover {
  background-color: #e6c200;
  cursor: pointer;
  transform: scale(1.15);
  transition: 0.3s ease;
}

/* === Footer === */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  background-color: #f0f0f0;
  color: #666;
  margin-top: auto;
}

/* === Animations === */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .booking-box {
    padding: 2rem 1.5rem;
  }

  #pricing {
    font-size: 0.95rem;
  }
}

/* === Error Message Styling === */
#date-error {
  display: none;
  color: red;
  font-size: 0.95rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  animation: fadeIn 0.3s ease;
}


/* === Stay Connected Section === */
.stay-connected {
  margin-top: 3rem;
  background: #ffffffdd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeSlideIn 1.5s ease-out;
}

.stay-connected h3 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.stay-connected p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-buttons a {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounceIn 1s ease;
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 0 20px #25D366aa;
}

.facebook-btn {
  background-color: #3b5998;
  box-shadow: 0 0 20px #3b5998aa;
}

.social-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* Fancy Animations */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}



.booking-box input[type="text"],
.booking-box input[type="email"],
.booking-box textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  background-color: #fff;
  cursor: pointer;
  resize: vertical;
}



/* Lock email style */
input[readonly] {
  background-color: #f0f0f0;
  color: #666;
  cursor: not-allowed;
}
