/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 60px; /* Push down to account for navbar height */
  overflow: hidden;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.hero-text p {
  margin: 5px 0;
  font-size: 1rem;
}

.book-now-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0077cc;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

/* Quick Info Section */
.quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 10px;
  text-align: center;
}

.info-card {
  flex: 0 0 45%;
  background-color: #f2f2f2;
  margin: 5px;
  padding: 15px;
  border-radius: 10px;
}

.location-link, .telephone-link {
  color: #0077cc; /* Blue that fits your theme */
  font-weight: 600; /* Semi-bold */
  text-decoration: none; /* Removes underline */
  border-bottom: 1px solid #0077cc; /* Optional modern underline */
  transition: all 0.2s ease-in-out;
}

.location-link:hover, .telephone-link:hover {
  color: #005fa3; /* Slightly darker on hover */
  border-bottom: 2px solid #005fa3;
}

/* General section container for consistent padding */
.section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Notices */
.notices {
  margin-left: 2px;
  margin-right: 2px;
  background-color: #fff7e6;
  border-left: 4px solid #ffa500;
  margin-top: 30px;
  padding: 16px 0;
  text-align: left;
}

.notices h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #cc7000;
}

#notice-list {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  
}

#notice-list li {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #333;
  padding-left: 3rem;
}

@media (min-width: 769px) {
  .notices h2 {
    padding-left: 2rem; /* Only apply on wider screens */
  }
  #notice-list li {
  padding-left: 3rem;
}
}


/* Blocked Dates */

.blocked-section{
  margin-top: 2rem;
}
.blocked-section h2{
margin-left: 3rem;
margin-bottom: 1rem;
}

#blocked-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blocked-card{
  margin-right: 2px;
  margin-left: 2px;
  background: #e4a9a963;
  padding: 15px;
  border-left: 4px solid #e20202;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
  padding-left: 80px !important;
}
@media (max-width: 769px) {
  .blocked-section h2{
margin-left:20px;
margin-bottom: 1rem;
}
.blocked-card{
  padding-left: 50px !important;
}
}
/* Gallery */
.gallery {
  margin: 20px;
}
.gallery h2{
  margin-bottom: 2rem;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.gallery-scroll img {
  width: 200px;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
}
@media (min-width: 769px) {
.gallery {
  margin-left: 3rem;
}
}

/* Features */
.features h2{
  margin-left: 1rem;
}
.features ul {
  list-style-type: none;
  padding: 0 20px;
  margin: 10px 0;
}

.features li {
  margin: 10px 0px;
  margin-left: 1rem;
}
@media (min-width: 769px) {
.features h2{
  margin-left: 3rem;
}
.features li {
  margin-left: 2rem;
}
}

/* Testimonials */
.testimonials {
  margin: 20px;
  background: #f0f8ff;
  padding: 15px;
  border-radius: 10px;
}

.testimonials blockquote {
  margin: 10px 0;
  font-style: italic;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px 0;
  background-color: #eee;
  font-size: 14px;
}
