html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--brand-bg);
  color: var(--brand-text);
}

/* === Brand Colors === */
:root {
  --brand-bg: #f7dfe3;  /* light pink */
  --brand-text: #6d4a4b; /* brown */
  --brand-accent: #6d4a4b;
  --overlay-dark: rgba(0, 0, 0, 0.45); /* dark overlay for hero section */
}

/* === Navbar === */
.navbar {
  background-color: var(--brand-accent) !important;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
}

.navbar .nav-link:hover {
  opacity: 0.8;
}

/* === Buttons === */
.btn-primary {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #5c3e3f;
  border-color: #5c3e3f;
  opacity: 0.95;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--brand-accent);
}

/* === Headings === */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  color: var(--brand-accent);
}

.custom-font {
  font-family: 'Anton', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Quote/Contact Form === */
.quote-container {
  max-width: 600px;
  margin: auto;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.quote-container h2 {
  text-align: center;
  color: var(--brand-accent);
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.muted {
  color: #6b5a5a;
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 6px;
  margin-bottom: 12px;
}

.full-width {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: var(--brand-accent);
  color: #fff;
  border: none;
}

.full-width:hover {
  opacity: 0.95;
}

/* === Status Messages === */
.status-box {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.success-message {
  background: #e9f8ef;
  color: #1f7a3a;
  border: 1px solid #cfead7;
}

.error-message {
  background: #fdecea;
  color: #7a2a2a;
  border: 1px solid #f5c6cb;
}

/* === Contact Info Section === */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
  display: inline-block;
  text-align: left;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-list li i {
  margin-right: 10px;
  font-size: 18px;
  vertical-align: middle;
  color: var(--brand-accent);
}

.contact-list a {
  color: var(--brand-text);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
  color: #3b5998; /* optional hover color */
}

/* === Hero Section === */
.hero-section {
  position: relative;
  background: url('/images/cleaning-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* === Small Responsive Tweaks === */
@media (max-width: 600px) {
  .quote-container {
    padding: 18px;
    margin: 12px;
  }

  .custom-heading {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


.hero-section {
    height: 90vh; /* default for desktop */
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh; /* reduced height for mobile */
    }
}
/* === About Hero Section === */
.about-hero {
    position: relative;
    background: url('/images/about-hero-bg.jpg') center/cover no-repeat;
    height: 80vh; /* Default desktop height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.667); /* Dark overlay for readability */
    z-index: 1;
}

.about-hero .hero-text {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.about-hero .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.about-hero .hero-text p {
    font-size: 1.2rem;
    color: #f1f1f1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* === Mobile adjustments === */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh; /* Reduce hero image height on phones */
        background-position: center top;
    }

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

    .about-hero .hero-text p {
        font-size: 1rem;
    }
}
/* ============================= */
/* Services Page Hero Section    */
/* ============================= */
.services-hero {
    position: relative;
    background: url('/images/services-hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Full overlay shadow covering the entire background */
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark transparent overlay */
    z-index: 1;
}

/* Text content */
.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Title (matching About page style) */
.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

/* Subtitle */
.services-hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}
