/* ========== Base Styles ========== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.72rem;
}

.site-logo {
  height: 40px;
  width: auto;
  margin-right: 0.25rem;
  position: relative;
  top: -4px; /* try -2px to -4px depending on your logo */
}


/* ========== Navigation ========== */
.nav-menu {
  display: flex;            /* inline on desktop */
  list-style: none;         /* remove bullets */
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

nav a {
  text-decoration: none !important;
  color: #1f2937;
  transition: color 0.3s;
}

nav a:hover,
nav a:focus,
nav a:active {
  color: #1e40af;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #1e40af;
}
/* Logo sizing that respects your existing header spacing */
.site-logo {
  display: block;
  height: 36px;           /* visually balanced with your header padding */
  width: auto;
}

/* Optional: auto-swap to white logo on dark hero/footer if needed */
.on-dark {
  filter: invert(1) brightness(200%); /* if you want to reuse the same SVG on dark bg */
}
/* Or: explicitly use the white SVG on dark sections via HTML instead */

/* ========== Hero Section ========== */
.hero {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 4rem  1rem;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.hero a {
  background: #ffffff;
  color: #1e3a8a;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero a:hover {
  background: #f3f4f6;
}

/* ========== Sections & Cards ========== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.about {
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ========== Forms ========== */
form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

form input,
form textarea {
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

form button {
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.75rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1e40af;
}

/* Consistent login inputs */
.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
  height: 45px;
}

.login-container input:focus {
  border-color: #007bff;
  outline: none;
}

/* ========== Footer ========== */
footer {
  background: #1e3a8a;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}
footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== Booking Container ========== */
.container-booking {
  max-width: 950px;
  margin: auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== Alerts ========== */
.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease, transform 0.5s ease;
  transform: translateX(120%);
}
.alert.show {
  transform: translateX(0);
}
.alert.success {
  background-color: #28a745;
}
.alert.error {
  background-color: #dc3545;
}
.close-btn {
  margin-left: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* ========== Calendar Styles ========== */
#calendar {
  max-width: 100%;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.fc-daygrid-day {
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fc-daygrid-day:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ========== Buttons ========== */
.btn-admin {
  text-decoration: none;
  font-weight: bold;
  background: #343a40;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}
.btn-admin:hover {
  background: #23272b;
}

/* ========== Responsive Navigation ========== */
@media (max-width: 767px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    border-radius: 50%;
    padding: 8px;
    background-color: #fff;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    display: none; /* hidden by default */
    flex-direction: column;
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    display: flex; /* shown when hamburger is clicked */
  }

  .nav-menu li {
    margin: 16px 0;
  }
}

/* ========== Extra Responsive ========== */
@media (max-width: 600px) {
  .container {
    padding: 15px 10px;
  }
  form button {
    font-size: 14px;
  }
}
@media (max-width: 341px) {
  .hero a {
    display: block;
    margin: 10px auto; /* space between stacked buttons */
    width: 80%;        /* keep them neat and not full-width */
    text-align: center;
  }
}

@media (max-width: 384px) {
  header h1 {
    font-size: 1.1rem;  /* shrink title */
  }

  .hamburger {
    top: 20px;          /* adjust position */
    right: 10px;        /* move slightly inward */
  }
}

/* Booking Modal */
.modal {
  display: none;                /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 2000;                /* higher than nav */
}

.modal-content {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.modal-close:hover {
  background: #a71d2a;
}

.btn-about {
  background: #1e3a8a;       /* hero background blue */
  color: #ffffff;            /* white text */
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;     /* pill-shaped rounded */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
  margin-top: 1.5rem;
}

.btn-about:hover {
  background: #1e40af;       /* slightly darker blue on hover */
}


/* === Brand (Logo + Text Alignment) === */
.brand a {
  display: flex;
  align-items: center;   /* vertically center logo with text */
  text-decoration: none;
}

.site-logo {
  height: 40px;
  width: auto;
  margin-right: 0.25rem; /* minimal gap */
  display: inline-block;
  vertical-align: middle; /* backup */
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a8a;
  line-height: 1;  /* keeps tight alignment */
}
@media (max-width: 600px) {
  .brand-name {
    font-size: 1rem; /* slightly smaller text */
  }

}

/* Extra tweak for very narrow screens (like iPhone 16 in portrait) */
@media (max-width: 433px) {
  .brand-name a{
    font-size: 0.9rem;
  }
}
footer a {
  color: #ffffff !important;   /* force white */
  text-decoration: none;
}

footer a:hover {
  color: #f3f4f6;              /* slightly lighter on hover */
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px reba(0,0,0,0.15);
  font-size: 0.95rem;
  display: none;
  z-index: 9999;
}

.cookie-banner p {
  margin-bottom: 12px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #1e3a8a;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-buttons button {
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.cookie-buttons button:hover {
  background-color: #0b7a95;
}

.cookie-buttons #manage-cookies {
  background-color: #f4f4f4;
  color: #333;
  border: 1px solid #ccc;
}

.cookie-buttons #manage-cookies:hover {
  background-color: #ddd;
}

/* ===== About Section Styling ===== */
/* ===== About Section Styling (Uniform Alignment) ===== */
.about {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;               /* 2rem all around */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: left;
  line-height: 1.6;
  
}

.about h2,
.about h3,
.about p,
.about ul {
  margin-left: 0;
  margin-right: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}

.about h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #1e40af;
  padding-bottom: 0.5rem;
}

.about h3 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1e40af;
  font-weight: bold;
}

.about p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #1f2937;
}

/* UL + LI aligned same as paragraphs */
.about ul {
  list-style: none;   /* remove default bullets */
  margin: 0 0 1.5rem;
  padding-right: 3rem;
}

.about ul li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #374151;
  position: relative;
  padding-left: 1.25rem; /* bullet spacing */
  padding-right: 3rem;
}

/* Custom gold bullet */
.about ul li::before {
  content: "•";
  color: #fbbf24;
  font-weight: bold;
  position: absolute;
  left: 0;
}


  .about h3 {
    font-size: 1.25rem;
  }
/* === Tighter Spacing for Index Page About Section Only === */
.about-index h2 {
  margin-bottom: 1rem;   /* was 1.5rem */
}

.about-index h3 {
  margin-top: 1.5rem;    /* was 2.5rem */
  margin-bottom: 0.5rem; /* was 1rem */
}

.about-index p {
  margin-bottom: 0.2rem; /* was 1.2rem */
}

.about-index ul {
  margin: 0 0 1rem;      /* was 1.5rem */
}

.about-index ul li {
  margin-bottom: 0.4rem; /* was 0.5rem */
}

/* Footer Layout */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;        /* stack on smaller screens */
  max-width: 550px;
  margin: 0 auto;
  gap: 1.5rem;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer-right {
  flex: 1;
  text-align: left;
}

footer p {
  margin: 0.3rem 0;
}

/* Testimonials Section */
.testimonials {
  background: #f9fafb;
  padding: 3rem 1.5rem;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1e3a8a;
}

/* Slider container */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Each testimonial card */
.testimonial {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 2rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #374151;
}

.testimonial span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a8a;
}



/* Controls container */
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;  /* space below testimonial */
}

/* Arrows */
.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background: rgba(30,58,138,0.85);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(30,58,138,1);
}

/* Dots */
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: #1e3a8a;
}

