@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    background-color: rgb(255, 239, 220);
}

a {
    color: #215f6e;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', sans-serif;
}

/* Hero with background image with a focus to the right */
.hero .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65vh;  
  background-image: url("img/foto-de-la-ciudad-de-tucson-arizona.webp?a=5");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1670px;
  background-position-x: center;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;  
  letter-spacing: 3px;
  text-shadow: 2px 2px 2px #00000080;
}

.hero p {
  color: #fff;
  letter-spacing: 4px;
  font-size: 1.5rem;
  text-shadow: 2px 2px 2px #00000080;
}



#services h2 {
    font-size: 2.5rem;
    color: #215f6e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

/* About */

#about h2 {
    font-size: 2.5rem;
    color: #215f6e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

#about h3 {
    font-size: 2rem;
    color: #215f6e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

#about p {
    color: #000;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
}

#about ul {
    list-style: none;
    padding: 0;

}

#about ul li {
    margin-bottom: 10px;
    letter-spacing: 2px;    
}

#videos h2 {
    font-size: 2.5rem;
    color: #215f6e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

#cta .container {
    background-image: linear-gradient(to right, #750b15, #a60e1d);
    color: #fff;
}

#cta a {
    letter-spacing: 2px;
}


/* On mobile */
@media (max-width: 576px) {
    .hero .container-fluid {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero a {
        padding: 5px;
        width: 100%;
        }

    .email-sm {
        font-size: 0.9rem;
    }
}

/* On tablet */
@media (min-width: 577px) and (max-width: 1024px) {
    .hero .container-fluid {
        min-height: 300px;
    }

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