@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F2991F;
  font-family: "Lato", sans-serif;
  color: #000;
}

/* === Typography === */
h1, h2, h3 {
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
  padding: 50px 50px 0px;
}

h2 {
  font-size: 28px;
  padding: 25px 50px 50px;
}

h3 {
  font-size: 20px;
  padding: 20px 0px 25px;
}

p {
  font-size: 14px;
  padding-bottom: 20px;
}

/* === Header === */
header {
  background-color: #000;
  border-bottom: 2px solid #fff;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 60px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}

/* === Layout === */
.container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.content {
  padding: 30px 50px;
}

.line {
  height: 2px;
  background: #000;
  margin: 0 50px;
}

/* === Pricing & Promo === */
.price {
  margin-left: auto;
}

.reduction{
  width: 100%;
  text-align: center;
  background-color: #000;
  color: #F2991F;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
}

.section-promo{
  padding-bottom: 20px;
}

/* === Arrows === */
.arrow,
.arrow-active {
  flex-shrink: 0;
  width: 5px;
  height: 10px;
  margin-top: 4px;
}

.arrow-active path {
  fill: #F2991F;
}

/* === Footer === */
footer {
  background: #000;
  border-top: 2px solid #fff;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.footer-section{
  padding: 30px 50px;
}

footer p,
footer a {
  font-size: 14px;
  padding-bottom: 20px;
}

footer a {
  color: #fff;
  text-decoration: none;
}
footer a.active {
  color: #F2991F;
}
footer a:hover {
  text-decoration: underline;
}
p.copyright {
  font-size: 12px;
  padding: 50px 0px 50px;
  text-align: center;
}

/* === Scroll to Top Button === */
.arrow-up {
  display: block;
  margin: 50px auto 0px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-up:hover {
  transform: scale(1.1);
}

@media (min-width: 600px) {
  header{
    height: 150px;
  }
  .logo{
    height: 70px;
  }
  p {
    font-size: 15px;
  }
  h1{
    font-size: 52px;
    padding: 50px 100px 0px;
  }

  h2{
    font-size: 34px;
    padding: 25px 100px 50px;
  }
  h3 {
    font-size: 23px;
    padding: 20px 0px 25px;
  }
  .line {
    margin: 0px 100px;
  }
  .content{
    padding: 30px 100px;
  }
  .footer-section{
    padding: 30px 100px;
  }
  footer a{
    font-size: 15px;
  }
  footer p{
    font-size: 15px;
  }
  p.copyright{
    font-size: 13px;
  }
}

/* === Responsive - Desktop and Up === */
@media (min-width: 1135px) {
  header{
    height: 175px;
  }
  .logo{
    height: 80px;
  }
  p {
    font-size: 16px;
  }
  h1{
    font-size: 64px;
    padding: 50px 150px 0px;
  }

  h2{
    font-size: 40px;
    padding: 25px 150px 50px;
  }
  h3 {
    font-size: 26px;
    padding: 20px 0px 25px;
  }
  .line {
    margin: 0px 150px;
  }
  .content{
    padding: 30px 150px;
  }
  footer a{
    font-size: 16px;
  }
  footer p{
    font-size: 16px;
  }
  p.copyright{
    font-size: 14px;
  }
  .arrow-up {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    margin-top: 100px;
}
  footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
  }

  .footer-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 180px 150px 80px;
  }

  footer .copyright {
    text-align: center;
    padding-top: 100px;
  }
}