/*
Theme Name: CleanHome
Theme URI: https://example.com/cleanhome
Author: Your Name
Author URI: https://example.com
Description: A simple and elegant theme for cleaning services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanhome
*/


body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.site-header,
.site-footer {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* MENU */

/* === NAV CLEANHOME === */
.nav-cleanhome {
  position: absolute; /* instead of fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5); /* translucent black */
  padding: 1.2rem 0;
}

/* Logo and links */
.nav-cleanhome .navbar-brand,
.nav-cleanhome .nav-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
}

.nav-cleanhome .nav-link:hover {
  color: #ddd !important;
}

#menu-top-menu-en a,
#menu-top-menu-en a:visited,
#menu-top-menu-en a:hover,
#menu-top-menu-en a:focus,
#menu-top-menu-en a:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

#menu-top-menu-fr a,
#menu-top-menu-fr a:visited,
#menu-top-menu-fr a:hover,
#menu-top-menu-fr a:focus,
#menu-top-menu-fr a:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-brand-email {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-brand-tel {
  color: #ffffff !important;
  text-decoration: none !important;
}



/* HERO */
.hero {
    padding: 3rem;
    text-align: center;
    background: white;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


/* ==== PRICING TABLE STYLES ==== */

.pricing-wrapper {
  font-family: sans-serif;
  background: #f9f9f9;
  padding: 40px 20px;
}

.pricing-table {
  background: white;
  margin: 0 auto 50px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.pricing-table h2 {
  text-align: center;
  padding: 20px;
  color: #00b7a8;
  border-bottom: 2px solid #f1f1f1;
  margin: 0;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background-color: #00edd9;
  color: #fff;
}

.note {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 10px;
}