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

a {
  text-decoration: none;
}

i.fa-facebook-square {
  color: #3b5998;
}

i.ion-social-facebook {
  color: #3b5998;
}

html {
  font-family: Roboto, "Open Sans", sans-serif;
  /* Variables */
  --first_color: #ff851a;
  --second_color: #ff571a;
  --background_gradient: linear-gradient(
    180deg,
    rgba(255, 133, 26, 1) 0%,
    rgba(255, 87, 26, 1) 100%
  );
  --hover_background_gradient: linear-gradient(
    0deg,
    rgba(255, 133, 26, 1) 0%,
    rgba(232, 62, 0, 1) 100%
  );
}

#logo {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#container {
  max-width: 1000px;
  margin: 0 auto;
}

#nav {
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  justify-content: space-around;
  width: 95%;
  height: 50px;
}

#nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background_gradient);
  border-radius: 10px;
  border: 0px;
  width: 18%;
  color: white;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 1px 1px 3px 2px #555;
}

#nav a:hover {
  cursor: pointer;
  background: var(--hover_background_gradient);
}

/* INDEX */

h1 {
  padding: 10px 0;
  text-align: center;
}

span.red {
  color: red;
  text-transform: uppercase;
}

p.center {
  text-align: center;
  padding: 10px 20px;
}

.fb {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.double-column {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 0 auto;
}

section.double-column .dc-img {
  display: flex;
  justify-content: space-around;
}

section.double-column img {
  max-width: 100%;
}

section.double-column:first-of-type .dc-img img {
  max-width: 33%;
}

section.double-column:nth-of-type(2) .dc-text {
  padding: 10px;
  text-align: center;
}

section.double-column:nth-of-type(2) .dc-text a .offer-button {
  margin: 10px auto;
  padding: 15px 30px;
  width: 200px;
  background: var(--background_gradient);
  border-radius: 10px;
  border: 0px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: 1px 1px 3px 2px #555;
}

section.double-column:nth-of-type(2) .dc-text a .offer-button:hover {
  cursor: pointer;
  background: var(--hover_background_gradient);
}

/* ABOUT */

section#about {
  padding: 15px;
}

section#about h1 {
  text-align: center;
  padding: 20px 0;
}

section#about p {
  padding: 20px;
  text-align: justify;
}

/* OFFER */

section#offer-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 95%;
}

.offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin: 10px auto;
  border: 1px solid black;
  border-radius: 3px;
  width: 100%;
  min-height: 125px;
}

.offer .offer-title {
  width: 50%;
}

.offer .offer-image img {
  border-radius: 3px;
  box-shadow: 1px 1px 3px 1px #555;
  max-height: 110px;
  margin: 5px;
}

.offer .offer-details {
  min-width: 250px;
  text-align: center;
  padding: 10px 0;
}

/* GALLERY */

section#gallery {
  width: 100%;
  padding: 20px;
  line-height: 200%;
  text-align: center;
}

.photo-container h2 {
  width: 100%;
  padding: 20px;
}

.photo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.single-photo {
  max-width: 50%;
  padding: 10px;
}

.single-photo img {
  border: 2px solid transparent;
  transition: 0.5s;
}

.single-photo img:hover {
  border: 2px solid black;
  transform: scale(1.1);
}

/* CONTACT */

section#contact {
  width: 100%;
  padding: 20px;
  line-height: 200%;
  text-align: center;
}

section#contact a {
  text-decoration: underline;
  color: var(--second_color);
}

section#contact h1 {
  font-size: 2em;
  margin: 20px;
}

/* FOOTER */

.footer-basic {
  padding: 40px 0 20px;
  background-color: #ffffff;
  color: #4b4c4d;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 10px;
}

.footer-basic ul a {
  color: black;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic ul a:hover {
  opacity: 1;
}

.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

.footer-basic .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
}

.footer-basic .social > a:hover {
  opacity: 0.9;
}

.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #nav a {
    font-size: 15px;
  }
  section.double-column:first-of-type {
    flex-direction: row;
  }

  section.double-column:first-of-type .dc-text {
    max-width: 50%;
  }

  section.double-column:nth-of-type(2) .dc-text a .offer-button {
    font-size: 15px;
    width: 250px;
  }

  .photo-container {
    justify-content: flex-start;
  }
}
