 
 :root {
  --brand: #002b5c;
  --accent: #0d6efd;
}

* {
  box-sizing: border-box;
}

/* Carousel captions without black box */
.carousel-caption h1,
.carousel-caption h6,
.carousel-caption p {
  color: #f8f9fa !important; /* soft off-white instead of pure white */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* shadow for readability */
  font-weight: 600;
}

.reservation-section {
  background: #f9fafb;
  padding: 60px 20px;
}
.reservation-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.reservation-form input,
.reservation-form select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.book-btn {
  background: #002b5c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.book-btn:hover {
  background: #0d6efd;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
}

.heroCarousel {
  height:500px;
  max-width: 100%;
}
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* ✅ Fixed Hero Banner */
.hero-banner {
  position: relative;
 
  min-height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;

  justify-content: center;
  text-align: center;
  image-rendering: -webkit-ptiize-contrast;
  
}

/* Limit carousel height */
#heroCarousel .carousel-item img {
  height: 500px;      /* adjust to your preference */
  object-fit: cover;  /* crops image to fill */
}
.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(99, 75, 75, 0.55); /* Dark overlay for readability */
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2; /* Keep text above overlay */
}

.subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  opacity: .9;
}

.reservation-form .form-control,
.reservation-form .form-select {
  border-radius: 0;
}

.card {
  border: 0;
  border-radius: 8px;
}

.card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

footer {
  background: #0b1220;
  color: #cfd8e3;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  background: #000000;
}

.py-6 {
  color: #000000;
  font-weight: 100;
}
#abut {
  font-weight: bold;
}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.col-md-6 text-center {  
  display:inline;
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh; /* Mobile-friendly hero */
    background: url('images/phne\ view.jpg') no-repeat center center/cover; 
  }
  .card img {
    height: 180px;
  }
}