:root {
  --accent-color: #FFD166;
  --accent-dark: #E6B94F;
  --brand-blue: #056e9b;
  --text-dark: #1f2a33;
  --bg-soft: #f7fbfd;
}

/* Typography */
body { font-family: 'Arvo', serif; }
h1, h2, h3, .navbar { font-family: 'Oswald', sans-serif; letter-spacing: 0.35px; }

/* Nav */
.navbar { border-radius: 0; border: none; margin-bottom: 0; }
.navbar-nav > li > a { padding: 18px 20px; font-weight: 500; }

/* Modern topbar */
#topbar {
  height: 46px;
  background: #045f87;
  text-align: right;
}
#topbar span {
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 46px;
}
#topbar a { color: #fff; text-decoration: none; }
#topbar a:hover { text-decoration: underline; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-blue), #0a8fc9);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.hero-title {
  color: var(--accent-color);
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.hero p {
  font-size: 20px;
  max-width: 880px;
  margin: 0 auto 18px auto;
  line-height: 1.6;
}
.hero-sub {
  font-size: 16px;
  margin-bottom: 22px;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
}
.hero .btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-dark);
}

/* Outline button base */
.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 28px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}
.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  text-decoration: none;
}

/* Sections + cards */
.section { padding: 60px 15px; }
.card-lite {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  height: 100%;
}
.section h2 { font-size: 32px; margin: 0 0 12px 0; }
.section p, .section li { font-size: 18px; line-height: 1.7; }
.soft-strip {
  background: var(--bg-soft);
  border-top: 1px solid #e7f0f5;
  border-bottom: 1px solid #e7f0f5;
  padding: 44px 15px;
  text-align: center;
}

/* Simple modern “pills” */
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.badge-pill {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  background-color: var(--brand-blue);
  text-align: center;
  padding: 18px;
  color: #D7D7D7;
  margin-top: 40px;
}

/* Subtle animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease-out both; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.26s; }

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 60px 16px; }
  .hero-title { font-size: 34px; }
  .hero p { font-size: 18px; }
}

/* Services Grid (scales as you add more service pages) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.service-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px 0;
  opacity: 0.95;
}

.service-card a.btn {
  margin-top: 6px;
}

/* Responsive map embed */
.map-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================
   NAV CTA: BOOK NOW (Bootstrap 3)
   ================================ */
.navbar-nav > li.nav-cta > a{
  background: var(--accent-color);
  color: #000 !important;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;

  /* Bootstrap 3 alignment */
  line-height: 38px !important;
  padding: 0 18px !important;
  margin: 5px 0 5px 14px;

  /* your final alignment tweak */
  position: relative;
  top: 4px;
}

.navbar-nav > li.nav-cta > a:hover,
.navbar-nav > li.nav-cta > a:focus{
  background: var(--accent-dark);
  color: #000 !important;
  text-decoration: none;
}

/* Mobile: behave like a normal menu item */
@media (max-width: 767px){
  .navbar-nav > li.nav-cta > a{
    top: 0;
    line-height: normal !important;
    padding: 10px 16px !important;
    margin: 10px 15px;
    display: inline-block;
  }
}

/* ==========================================
   HERO OUTLINE BUTTON: FORCE WHITE TEXT
   (fixes “red/visited” link colors)
   ========================================== */
.hero .btn-outline,
.hero .btn-outline:visited{
  color: #fff !important;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus{
  color: #fff !important;
}

/* ================================
   GLOBAL BUTTON THEME (site-wide)
   ================================ */

/* Primary buttons (match your yellow hero button) */
.btn.btn-primary,
a.btn.btn-primary {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  border-radius: 10px;
}

.btn.btn-primary:hover,
a.btn.btn-primary:hover,
.btn.btn-primary:focus,
a.btn.btn-primary:focus {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  color: var(--text-dark) !important;
}

/* Secondary buttons (clean modern outline) */
.btn.btn-default,
a.btn.btn-default {
  background: transparent !important;
  border: 2px solid rgba(31, 42, 51, 0.25) !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  border-radius: 10px;
}

.btn.btn-default:hover,
a.btn.btn-default:hover,
.btn.btn-default:focus,
a.btn.btn-default:focus {
  background: rgba(31, 42, 51, 0.06) !important;
  border-color: rgba(31, 42, 51, 0.35) !important;
  color: var(--text-dark) !important;
  text-decoration: none;
}

/* Fix: links inside buttons turning red/visited */
.btn,
.btn:visited,
.btn a,
.btn a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* Optional: consistent sizing */
.btn.btn-lg {
  padding: 12px 22px;
  font-size: 18px;
  border-radius: 12px;
}

/* ================================
   FOOTER + SOCIAL LINKS FIX
   ================================ */
.site-footer a,
.site-footer a:visited {
  color: #ffffff !important;
  text-decoration: none;
}

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

