:root {
  --primary-navy: #1e293b;
  --accent-blue: #2563eb;
  --brand-accent: #d5701a;
  --soft-bg: #f8fafc;
}

/* ===== Base Styles (Mobile First) ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

body {
  background-color: var(--soft-bg);
  color: #333;
  line-height: 1.6;
  padding-bottom: 60px; /* Prevent sticky bar overlap */
}

h1,
h2 {
  font-weight: 600;
}

body {
  font-weight: 400;
}

/* Containers */
.container {
  width: 93%;
  margin: auto;
}

/* Header */
header {
  /* background-color: #0f172a; */
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
/* .logo { 
  margin-bottom: 10px;
}*/

.logo span {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: 6px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: inline-block;
}

.logo img {
  max-width: 320px;
  height: auto;
}

/* Header Text */
header h1 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Header Text */
header h1 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.tagline {
  font-size: 0.96rem;
  opacity: 0.9;
}

/* Navigation Links */
.nav-link {
  color: #c7d2fe;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:last-child {
  margin-right: 0;
}

.nav-link:hover {
  text-decoration: underline;
}

/* 
all color codes for nav links background
.container-nav-links-dark {
  background-color: #1e293b;
}
.container-nav-links {
  background-color: #0f172a;
} */

/* Coming Soon Banner */
.coming-soon {
  background-color: #e0f2fe;
  color: #0f172a;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #cbd5e1;
}

.coming-soon p {
  font-size: 0.95rem;
}

.coming-soon strong {
  font-size: 1.3rem;
}

/* Main Content */
main {
  background-color: #ffffff;
  padding: 23px;
  margin-top: -13px;
  border-radius: 6px;
  padding-bottom: 60px;
}

section {
  margin-bottom: 23px;
}

section h2 {
  margin-bottom: 9px;
  color: var(--primary-navy);
  font-size: 1.3rem;
}

ul {
  list-style-type: "\1F44D"; /* Thumbs Up Emoji */ /* Alternative: "\2705" (✅) \1F7E0 (🟠) for bullet */
  padding-left: 20px;
}

/* Contact Page Details */
.contact-details {
  margin-top: 16px;
}

.contact-details p {
  margin-bottom: 9px;
  font-size: 0.96rem;
}

/* Google Business Profile–Ready Address */
.business-address {
  margin-top: 13px;
  font-style: normal;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 0;
  font-size: 0.9rem;
  color: #666;
}

a:hover {
  color: var(--brand-accent);
}

/* ===== Mobile Sticky Contact Bar ===== */
.mobile-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-navy);
  border-top: 3px solid var(--brand-accent);

  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 1000;
}

/* Links */
.mobile-contact-bar a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
}

.mobile-contact-bar a:hover {
  text-decoration: underline;
}

/* Hide on larger screens */
@media (min-width: 768px) {
  .mobile-contact-bar {
    display: none;
  }
}

/* ===== Larger Screens (Tablet & Desktop) ===== */
@media (min-width: 768px) {
  .container {
    max-width: 900px;
  }

  header h1 {
    font-size: 2.6rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .coming-soon p {
    font-size: 1.3rem;
  }

  .coming-soon strong {
    font-size: 1.6rem;
  }
  main {
    padding: 60px;
    margin-top: -30px;
  }

  section h2 {
    font-size: 1.6rem;
  }
}
