@font-face {
  font-family: Bangers-Regular;
  src: url(Bangers-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5eac9;
}

/* Nav  */
nav {
  background-color: #000;
  color: white;
}
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#navbar li {
  float: left;
}
#navbar li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 4px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#navbar li a:hover,
.dropdown:hover .dropbtn {
  background-color: red;
}

#navbar li.dropdown {
  display: inline-block;
}

#navbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border-radius: 20px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#navbar .dropdown-content a {
  color: black;
  font-weight: bold;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

#navbar .dropdown-content a:hover {
  background-color: #ffa07a;
}

#navbar .dropdown:hover .dropdown-content {
  display: block;
}

#searchicon {
  font-size: 20px;
  margin-left: auto;
}
#searchicon:hover {
  color: #c51414;
}
/* End Nav */

/* Header */
#Hero {
  margin: auto;
  padding: 20px;
  background-color: #f5eac9;
}
#Hero h1 {
  color: #f7652b;
  margin-top: 25px;
  text-align: center;
  font-size: 7em;
  font-family: Bangers-Regular;
  letter-spacing: 10px;
}
#Hero h4 {
  color: gray;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 100;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#Hero p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  gap: 10px;
  padding: 10px 16px;
}
/* End Header */

/* Article */
#Disco {
  background-color: #f5eac9;
  text-align: center;
  margin: auto;
  padding: 20px;
}
#Disco h2 {
  font-size: 48px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #f7652b;
}

.card01 {
  display: inline-block;
  width: calc(33.33% - 40px);
  margin: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card01 img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
/* End Article */

/* Section */
#about {
  text-align: center;
  background-color: #000;
  margin: auto;
  padding: 20px;
  color: white;
}
#about h2 {
  font-size: 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #f7652b;
}
#about h4 {
  font-size: 14px;
  color: white;
  font-weight: 100;
}
.textLinks {
  font-size: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  gap: 20px;
  margin: 10px 16px;
  color: white;
}
.textLinks a:hover {
  color: #ffa07a;
  font-size: 40px;
}
.textLinks ul {
  list-style: none;
  padding: 0;
}

.textLinks ul li {
  display: inline;
  margin: 0 10px;
}

.textLinks ul li a {
  color: white;
  text-decoration: none;
}

.card02 {
  display: inline-block;
  width: calc(33.33% - 40px);
  margin: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card02 img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.card02 a,
.card01 a {
  text-decoration: none;
}
.card02 h2,
.card01 h2 {
  font-size: 30px;
  color: #ffa07a;
}
.card02 p,
.card01 p {
  font-size: 14px;
  color: white;
}
.card02 h2:hover,
.card01 h2:hover {
  font-size: 40px;
  color: #c51414;
}
/* End Section */

/* Section Contactos */
#contact-us {
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
  gap: 60px;
  color: #000;
}
#contact-us h2 {
  text-align: center;
  font-size: 3em;
  color: #f7652b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#contact-us p {
  text-align: center;
  font-size: 1em;
  color: grey;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
form {
  width: 60%;
}
.inputsWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  margin-left: 60px;
  align-items: center;
}
.inputsWrapper input {
  padding: 10px 16px;
  border-radius: 20px;
  width: 100%;
  border: 1px solid gray;
  outline: none;
}
.inputsWrapper textarea {
  border-radius: 10px;
  width: 100%;
  padding: 12px 20px;
  outline: none;
}
.inputsWrapper button {
  width: 20%;
  height: 30px;
  margin-top: 20px;
  border-radius: 20px;
  color: #000;
  background-color: #ffa07a;
  outline: none;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
button:hover {
  background-color: #000;
  color: #ffa07a;
}
#successMessage {
  display: none;
  margin-top: 20px;
  color: #f7652b;
  font-weight: bold;
  font-size: 24px;
}

button:focus + #successMessage,
button:active + #successMessage {
  display: block;
}
.address {
  flex-basis: 30%;
}

.detailsWrapper {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.details {
  display: flex;
  gap: 10px;
}
.details li {
  display: flex;
  padding: 10px;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
}
.details i {
  color: #f7652b;
  font-size: 20px;
}
/* End Section Contactos */

/* Footer */
footer {
  text-align: center;
  margin: auto;
  padding: 20px;
  background-color: #000;
  color: white;
}
.socialLinks {
  display: flex;
  justify-content: center;
  font-size: 2em;
  gap: 16px;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 15px;
}
.socialLinks i {
  color: #ffa07a;
}
.socialLinks i:hover {
  color: white;
}
.footr {
  font-size: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.footr a {
  color: gray;
  text-decoration: none;
}
.footr a:hover {
  font-size: 20px;
}
/* End Footer */

/* Medias */
@media only screen and (max-width: 780px) {
  #contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .inputsWrapper input {
    width: 100%;
  }
  #Disco {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card01,
  .card02 {
    width: 100%;
  }
  #Hero h1 {
    font-size: 5em;
  }
}

@media only screen and (max-width: 420px) {
  #Hero h1 {
    font-size: 4em;
  }
  #navbar {
    font-size: 12px;
  }
}
