/* global reset */

/* === Global CSS Reset === */

/* 1. Remove default margins, paddings, borders, and set box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Set default body settings */
body {
  line-height: 1.2;
  background-color: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Remove list styles */
ul,
ol {
  list-style: none;
}

/* 4. Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* 6. Set media elements to display block and fit container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7. Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Set default border and appearance for form elements */
input,
textarea,
select {
  border: none;
  outline: none;
  background: none;
}

/* 9. Set html and body to take full height */
html,
body {
  height: 100%;
}


:root{
  /* quick bar */
    --quick-bar-color: #23395B;
    --quick-bar-font: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
    --quick-bar-text-font-size: 1rem;
    /* header */
    --text-logo-font-family: Georgia, serif;
    --text-logo-font-size: 3rem;
    --text-logo-font-size-768px: 2.5rem;    
    --text-logo-font-size-400px: 1.5rem;    
    --text-logo-color: #23395B;
    --links-font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
    --links-font-color: #fdfefc;
    --btn-color: #23395B;
    --btn-link-color: #fdfefc;
       /* hamburger menu  */
    --hamburger-menu-toggle-color: #D90368;   
    --hamburger-menu-links-font-size: 2rem;
    --section-header-font-family: ;   
    --section-header-color: #23395B;   
}


body{
    background-color: #ffffff;
    font-family: 'libre' 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
}
html{
    scroll-behavior: smooth;
}

h1{
    font-size: 3rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.5rem;
}

.site-wrapper{
    max-width: 2560px;
    margin: 0 auto;
    background-color: #fdfefc;
}
section{
  margin: 0 auto;
  max-width: 2560px;
}
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* quick contact bar + header + nav */
.quick-contact-bar-container{
  max-width: 2560px;
  margin: 0 auto;
  background-color: var(--quick-bar-color);
}
.quick-contact-bar{
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-family: var(--links-font-family);
}
.quick-contact-bar>ul{
  /* outline: 1px solid green; */
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.quick-contact-bar>ul>li{
  /* outline: 1px solid white; */
  align-items: center;
  padding: 0.5rem;
}
.quick-contact-bar>ul>li>a{
  color: var(--links-font-color);
  font-size: var(--quick-bar-text-font-size);
}
.quick-contact-bar>ul>li>a>i{
  font-size: 1.2rem;
  padding: 0.2rem;
}

/* header */
.header{
  /* outline: 1px solid red; */
  margin: 0 auto;
  
  text-align: center;
}
.text-logo-container{
  max-width: 40rem;
  margin: auto;
}
.text-logo{
  width: 100%;
  font-size: var(--text-logo-font-size);
  text-transform: uppercase;
  font-family: var(--text-logo-font-family);
  color: var(--text-logo-color);
}
/* navigation */
.big-screen-remove{
  display: none;
}
.nav{
  /* outline: 1px solid red; */
  margin: 0 auto;
  max-width: 500px;
  margin-bottom: 0.5rem;
}
.nav>ul{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-links>li>a{
  color: var(--text-logo-color);
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.nav-links>li>a:hover{
  color: #FB8B24;
  text-decoration: underline;
}
/* end of header */


/* Promo Section */
.section-info{
  text-align: center;
  margin-top: 1rem;
}

.promo-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.promo-card {
  max-width: 500px;
  width: 100%;
  text-align: center;
  padding: 3rem 2rem;
  margin: 2px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 16px;
  /* border: 0.8px solid #23395B; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.promo-header {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.promo-subheader {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #444;
}

.promo-details {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #555;
}

.promo-note {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #777;
}

.promo-link {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--btn-color);
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-link:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



/* Responsive tweaks */
@media (max-width: 600px) {
  .promo-card {
    padding: 2rem 1.5rem;
  }

  .promo-header {
    font-size: 2rem;
  }

  .promo-subheader {
    font-size: 1.4rem;
  }
}





/* footer */
/* Footer Base Styles */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column address {
  font-style: normal;
  line-height: 1.6;
  color: #ccc;
}

















/* MEDIA QUERIES */
@media screen and (max-width: 1024px){
  .hero{
    background-image: url(./img/index.html-hero-1024px.webp);
  }
   .welcome-hero-text-container{
      margin: 0 auto;
      text-align: center;
    }
    .card-wrapper{
      max-width: 900px;
    }
    .card-wrapper .swiper-pagination{
      margin-top: -40rem;
  }
    
}
/* For screens smaller than 768px */
@media screen and (max-width: 768px){

  #small-screen-remove{ /*remove email and phone for small screens*/
    display: none;
  }
  .quick-contact-bar>ul{
    justify-content: space-between;
  }
  .text-logo{
    font-size: var(--text-logo-font-size-768px);}
    /* navigation hamburger menu*/  
    .nav{
      display: none;
    }
    .big-screen-remove{
      display: initial; /*bring back the toggle*/
    }
    .menu-toggle {
      font-size: 30px;
      cursor: pointer;
      padding: 1 rem;
      color: var(--hamburger-menu-toggle-color);
      z-index: 1001;
      position: fixed;
      right: 0;
    }
    
    .side-nav{
      position: fixed;
      top: 0;
      left: -768px; /* Hide off-screen */
      width: 100vw;
      height: 100%;
      background-color: var(--quick-bar-color);
      padding-top: 60px;
      display: flex;
      flex-direction: column;
      transition: left 0.3s ease;
      z-index: 1000;
    }
    .side-nav ul{
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    .side-nav>ul>li>a {
      padding: 15px 20px;
      text-decoration: none;
      color: var(--links-font-color);
      transition: background 0.3s;
      font-size: var(--hamburger-menu-links-font-size);
    }
    
    .side-nav a:hover {
      background-color: #444;
    }
    
    .side-nav.open {
      left: 0; /* Slide in */
    }
    /* hero */
    .hero{
    background-image: url(./img/index.html-hero-768px.webp);
  }
    .welcome-hero-text-container{
      margin: 0 auto;
      text-align: center;
      padding: 12rem 3rem;
    }

    .welcome-hero-text h1{
      font-size: 2rem;
    }
    .welcome-hero-text h2{
      font-size: 1.5rem;
    }
    .welcome-hero-text p{
      font-size: 1rem;
    }
    /* slider */
    .card-wrapper{
        margin: 0 10px 25px;
        width: 100%;
    }
    .card-wrapper .swiper-slide-button{ /*removing swiper button*/
        display: none;
    }
    .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}






/* For screens smaller than 426 px */

@media screen and (max-width: 426px){
  .text-logo{
    font-size: var(--text-logo-font-size-400px);

  }
  .hero{
    background-image: url(./img/index.html-hero-425px.webp);
  }
  .welcome-hero-text{
    margin-top: -8rem;
  }
  .google-reviews-section{
    max-width: 350px;
  }
  .elfsight-app-aa87a48c-0dca-4422-a61d-49d963bdafc1{
  overflow: hidden; /*overflow an issue around 375px*/
}
}







/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */











