/* styles.css */
/* Base styles */
body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
a {
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  text-decoration: none;
}
/* Section styling */
.section-title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 600;
}
.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  margin: 12px auto 0;
}

/* Section with gradient separators */
section.py-5 {
  position: relative;
}

section.py-5:before,
section.py-5:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
}

section.py-5:before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

section.py-5:after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
}

/* Banner container */
.banner-container {
  position: relative;
  overflow: hidden;
}

/* Enhanced clinic facilities section */
.facility-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: #fff;
  margin-bottom: 2rem;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.facility-card .image-container {
  height: 280px;
  overflow: hidden;
}

.facility-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.facility-card:hover img {
  transform: scale(1.05);
}

.facility-card .card-body {
  padding: 1.5rem;
}

.facility-card .card-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Contact section */
.contact-section {
  border-radius: 8px;
}

/* Contact cards */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #333;
  font-weight: 600;
}

.contact-icon {
  color: #007bff;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.transport-icon {
  color: #007bff;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.opening-hours li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.opening-hours li:last-child {
  border-bottom: none;
}

.booking-info {
  color: #555;
}

/* Booking notices */
.booking-notice {
  background-color: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.important-notice {
  background-color: #fff4e5;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
/* Booking container */
.booking-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Map integration */
.map-responsive {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 8px;
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.location-info {
  border-radius: 8px;
}
/* Button styles */
.btn {
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}
.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}
/* Navbar adjustments */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand.small-text {
  font-size: 1.1rem;
  font-weight: 500;
}
/* Footer adjustments */
footer {
  border-top: 1px solid #eee;
}
/* Responsive styles */
@media (max-width: 767px) {
  h1.display-4 {
    font-size: 2rem;
  }
  .lead {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .navbar-brand.small-text {
    font-size: 0.9rem;
  }
  .facility-card .image-container {
    height: 220px;
  }
  .contact-section {
    padding: 15px !important;
  }
  .booking-notice,
  .important-notice {
    padding: 15px;
    margin: 15px 0;
  }
  #cliniko-50615686 {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .contact-card {
    margin-bottom: 1rem;
  }
}
/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .facility-card .image-container {
    height: 250px;
  }
}
