/* 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: 2rem;    
    --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 */





/* hero */
.hero{
  background-image: url(./img/about.html-hero-2560px.webp);
  width: 100%;
  /* max-width: 2460px; */
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero-text-container{
  /* outline: 1px solid blue; */
  padding: 10rem 15rem;
}
.about-hero-text{
  color: var(--text-logo-color);
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text button{
color: var(--links-font-color);
background: var(--quick-bar-color);
  width: 100px;
  padding: 0.5rem 1rem;
  margin: 2rem 0.5rem;
  border-radius: 10px;
  transition: 0.5s ease;
}
.about-hero-text button:hover{
  background-color: #af7241;
  color: var(--text-logo-color);
  border-color: var(--quick-bar-color);
  font-weight: 700;
}

/* section headers */
.section-header{
  padding: 2rem;
  color: var(--section-header-color);
}

/* about-info buttons */
.about-info button{
color: var(--links-font-color);
background: var(--quick-bar-color);
  width: 100px;
  padding: 0.5rem 1rem;
  margin: 2rem 0.5rem;
  border-radius: 10px;
  transition: 0.5s ease;
}
.about-info button:hover{
  background-color: #af7241;
  color: var(--text-logo-color);
  border-color: var(--quick-bar-color);
  font-weight: 700;
}




/* ABOUT */
.about-section{
  /* background: linear-gradient(#eceffe, #ced6fb);   */
    padding: 2rem 1rem 5rem 1rem;
    text-align: center;
}
.about-header{
    margin: 0 auto;
    margin-top: -2rem;
}
.about-section {
    width: 100%;
}


.about-info {
    /* outline: 1px solid red; */
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-logo-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.about-info p {
    text-align: center;
}






/* 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/about.html-hero-1024px.webp);
  }
   .about-hero-text-container{
      margin: 0 auto;
      text-align: center;
    }
    .about-hero-text{
    margin-top: -5rem;    
  }
  

/* 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: 1rem;
      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/about.html-hero-768px.webp);
  }
    .about-hero-text-container{
      margin: 0 auto;
      text-align: center;
      padding: 12rem 3rem;
    }
    /* 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 400px */

@media screen and (max-width: 425px){
  .hero{
    height: 60vh;
  }
  .text-logo{
    font-size: var(--text-logo-font-size-400px);
  }
  .hero{
    background-image: url(./img/about.html-hero-425px.webp);
  }
  .about-hero-text-container{
      margin: 0 auto;
      text-align: center;
      padding: 7rem 2rem;
      max-width: 400px;
    }
  .about-hero-text h1{
    font-size: 2rem;
  }
  .about-hero-text h2{
    font-size: 1.5rem;
  }
  .about-hero-text p{
    /* font-size: 1.2rem; */
  }
}







/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */











