/* Reset */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  color: #2E3A2F;
  background-color: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.navbar-nav .nav-link:hover {
  color: #4CAF50 !important; /* leafy green hover */
}

.btn-success:hover {
  background-color: #45a049;
}

.btn-outline-success:hover {
  background-color: #4CAF50;
  color: white;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.hero-section {
  height: 100vh;
  color: white;
  background: url("images/hero.jpg") center center/cover
    no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section > div {
  z-index: 2;
  position: relative;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-img {
  max-width: 500px; /* you can change this size */
  width: 100%;
  height: auto;
  object-fit: cover;
}


.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typing Animation */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(20, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Video background */
#heroVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Typing animation */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.card-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.card ul {
  margin-top: 0.75rem;
}

.card img {
  object-fit: cover;
  height: 240px;
}

#gallery img {
  transition: transform 0.3s ease;
}
#gallery img:hover {
  transform: scale(1.03);
}

.card-text {
  font-style: italic;
  color: #333;
}
.card-body {
  transition: transform 0.3s ease;
}
.card:hover .card-body {
  transform: translateY(-5px);
}

footer a:hover {
  text-decoration: underline;
  color: #ffc107;
}

.booking-section {
  color: #fff;
}

.booking-section .card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 1.5rem;
}

label {
  font-weight: 500;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
}

/* Booking Section */
.booking-section {
  background-color: #f9f9f9;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Booking Form & Summary Card */
.booking-form {
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Responsive booking layout */
@media (min-width: 992px) {
  .booking-section .container {
    display: flex;
    gap: 30px;
  }
}

/* Title styling */
.booking-section h2 {
  font-size: 2.2rem;
}

/* Form elements */
.form-control,
.form-select {
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* Summary Card Title */
#bookingSummary h5 {
  font-size: 1.25rem;
}

/* Summary Totals */
#bookingSummary p {
  margin-bottom: 10px;
}

/* Improve spacing below submit button */
#bookingForm button {
  margin-top: 10px;
}

/* Modal Styling (optional enhancement) */
.modal-content {
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

