@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Goblin+One&family=Open+Sans&display=swap");
/* General Variables */
/* ecru white */
/* ALERT */
/* NavMenu specific variables */
/* Buttons */
/* BUY ONLINE BUTTON */
/* SECTION VARIABLES */
/* Top */
/* Who We Are */
/* Images */
/* News */
/* Timetables */
/* Locations */
/* Footer */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body,
html {
  scroll-behavior: smooth;
  width: 100%;
  font-size: 14px;
  color: white;
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  background-color: #f7f8ed;
}

h1, h2, h3 {
  color: #BFD49B;
  font-family: "Archivo", sans-serif;
}

h1, h2 {
  text-align: center;
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* Alerts */
.alert {
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
  padding: 25px;
  margin: 25px auto;
  color: white;
  border: 1px solid #79B059;
  background-color: rgb(121, 176, 89);
  font-weight: bold;
  text-transform: uppercase;
}

/* Custom Buttons*/
.custom-btn a {
  padding: 15px;
  background-color: #f7f8ed;
  border: 1px-solid #f7f8ed;
  box-shadow: 2px 2px 6px grey;
}

.custom-btn a * {
  color: #000033;
  margin: 0 !important;
  padding: 0 !important;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 15px;
}

.back-to-top a {
  border-radius: 50%;
  padding: 10px;
}

.back-to-top a span {
  vertical-align: bottom;
}

/* Icons */
body .material-symbols-outlined {
  vertical-align: middle;
  font-size: 22px;
  margin-right: 5px;
}

/* Top Section */
#top {
  height: 95vh;
  text-align: center;
  background-color: dimgrey;
  position: relative;
}
#top > svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -1px;
}

#top::before {
  content: "";
  background-image: url("../assets/background-image.jpg");
  background-position: center center;
  /* Tus estilos normales */
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 1;
}
@supports (-webkit-touch-callout: none) {
  #top::before {
    /* Estilos específicos para iOS */
    background-attachment: scroll;
  }
}

/* Header */
#home {
  position: relative;
  height: 20vh;
}

.logo img {
  max-height: 20vh;
  width: auto;
  padding: 30px 0 15px;
}

/* .logo-wrapper {
    padding-top:50px;
    font-family: 'Goblin One', cursive;
    font-size:35px;
    text-transform: uppercase;
    color:white;

}
.logo {
    font-size:35px;
}
.logo-subtitle {
    font-size: 22px;
} */
/* Navbar Menu */
#top nav[role=custom-dropdown] {
  margin-bottom: 120px;
}
#top nav[role=custom-dropdown] li {
  background-color: #FAFBF4;
}
#top nav[role=custom-dropdown] li a {
  color: #000033;
}
#top nav[role=custom-dropdown] li:hover {
  background-color: #BFD49B;
  transition: background 0.3s;
}
#top nav[role=custom-dropdown] li:hover a {
  color: white;
}

/* Buy Online Button */
.buy-online a {
  background-color: rgba(247, 248, 237, 0.7);
  border-radius: 15px;
  box-shadow: 2px 2px 3px grey;
  color: #000033;
  padding: 1em 2.5em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
}
.buy-online a:hover {
  background-color: #f7f8ed;
  cursor: pointer;
}
.buy-online a:active {
  box-shadow: none;
  top: 5px;
}

/* WHO WE ARE */
#who-we-are {
  color: #000033;
  background-color: #f7f8ed;
}
#who-we-are p {
  text-align: justify;
  max-width: 85%;
  margin: auto;
  margin-bottom: 5px;
}
#who-we-are h1, #who-we-are h2, #who-we-are h3, #who-we-are h4, #who-we-are h5, #who-we-are h6 {
  color: #BFD49B;
}
#who-we-are > div {
  text-align: center;
}
#who-we-are img {
  max-width: 600px;
  margin: 3rem auto;
}

/* Articles */
article {
  padding: 25px 15px;
  max-width: 1200px;
  margin: auto;
}

.title-area {
  margin: 25px auto;
  text-align: center;
}

.title-area img {
  max-width: 800px;
}

#images {
  background-color: #f7f8ed;
}

.image-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.image-wrapper > * {
  flex-basis: 250px;
}

/* NEWS */
#news {
  background-color: #f7f8ed;
}

#news a {
  text-align: center;
}

/* PRODUCTS MENU */
#products-menu {
  text-align: center;
}
#products-menu p {
  color: #000033;
  max-width: 85%;
  margin: 15px auto;
}
#products-menu p a span {
  font-size: 2em;
}

/* Timetable Table */
#timetables {
  background-color: #f7f8ed;
}

#timetables table {
  margin: 25px auto;
  width: 100%;
  max-width: 500px;
  border-collapse: collapse;
  border: 1px solid #79B059;
  color: #000033;
  background-color: white;
}

#timetables thead tr {
  background-color: #79B059;
  color: white;
}

#timetables tbody tr:nth-child(even) {
  background-color: #FAFBF4;
}

#timetables th,
#timetables td {
  padding: 9px;
}

#timetables tbody td {
  text-align: center;
}

#timetables tbody td:first-child {
  text-align: left;
}

#location {
  color: #000033;
  background-color: #f7f8ed;
}

.address {
  margin: 50px 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 1.3rem;
}
.address a, .address a:hover, .address a:visited, .address a:focus {
  color: inherit;
}
.address img {
  width: 28px;
  vertical-align: middle;
}
.address .material-symbols-outlined {
  font-size: 2.5rem !important;
}
.address > :first-child {
  justify-self: end;
}
.address > :last-child {
  justify-self: start;
}
.address .social-wrapper img {
  width: 3em;
  margin-right: 15px;
}
.address .social-wrapper a:last-child img {
  margin-right: 0;
}

#map {
  text-align: center;
}

#map iframe {
  width: 300px;
  height: 225px;
}

footer {
  color: #000033;
  padding: 50px 0;
  margin-top: 50px;
  text-align: center;
  background-color: #FAFBF4;
}

footer img {
  vertical-align: bottom;
  height: 1.7rem;
  width: auto;
}

/* MEDIA QUERIES */
/* Small screens */
@media (min-width: 576px) {
  #map iframe {
    width: 500px;
    height: 375px;
  }
}
@media (min-width: 768px) {
  #top nav[role=custom-dropdown] ul {
    display: flex;
    justify-content: center;
  }
  #top nav[role=custom-dropdown] ul li {
    background-color: transparent;
    box-shadow: none;
    width: 140px;
    line-height: 3em;
    float: none;
    align-self: center;
  }
  #top nav[role=custom-dropdown] ul li a {
    color: white;
  }
  #top nav[role=custom-dropdown] ul li:last-child {
    margin-bottom: 0;
  }
  #top nav[role=custom-dropdown] ul li:hover a {
    color: black;
  }
  .buy-online {
    position: relative;
    top: 10%;
  }
  #map iframe {
    width: 600px;
    height: 450px;
  }
}

/*# sourceMappingURL=styles.css.map */
