/* General Resets */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 75vh;
  overflow: hidden;
  position: relative;
  background: #000;
}
.hero-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.hero-content {
  max-width: 700px;
  padding: 2rem;
  border-radius: 1rem;
}

/* Buttons */
.hero-content .btn {
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
}

/* Quick Facts */
.bg-white .row p {
  font-size: 1.05rem;
  margin-bottom: 0;
}
.bg-white .row strong {
  display: block;
  font-size: 1.2rem;
}

/* Section Headings */
h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
}


.card.position-relative {
  overflow: hidden;
  cursor: pointer;
}

.card-img-top {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.card.position-relative:hover .card-img-top {
  transform: scale(1.05);
}

.card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1rem;
  box-sizing: border-box;
}


/* Cards */

.card-img-top {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  height: 180px;
  object-fit: cover;
}

.snazzy-title {
font-weight: 700;
    font-size: 16px;
    background: linear-gradient(to right, #004e92, #a8d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 30px;
    margin-top: 0px;
}

/* underline stretching full width of the container */
.snazzy-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem; /* space below text */
  width: 100%; /* full viewport width */
  height: 3px;
  background: linear-gradient(to right, #004e92, #a8d0ff);
  z-index: -1;
}

.card-title-overlay {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
}



.btn-outline-primary.active {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}


/* Badges */
.badge {
  padding: 0.4em 0.7em;
  font-size: 0.75rem;
  margin-right: 0.3em;
  border-radius: 0.5rem;
  font-weight: 500;
}

/* Reviews */
.card p {
  margin-bottom: 0.5rem;
}

/* Themed Areas */
.card-text {
  font-size: 0.95rem;
  color: #555;
}

.btn-outline-primary.active {
    background-color: #004e92;
    border: none;
}

/* Map Placeholder */
section img.img-fluid {
  border: 2px solid #ddd;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-height: 500px;
  object-fit: cover;
}

.card-title-overlay {
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  font-weight: bold;
  font-size: 1rem;
  /* place overlay at bottom */
  position: absolute;
  color: white;
}

/* Make sure card image and container keep relative/overflow to clip overlay */
.card.position-relative {
  overflow: hidden;
}

/* Responsive overrides */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-content {
    padding: 1rem;
    font-size: 0.95rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
