

:root {
  --text-dark: #000000;
  --text-light: #141412;
  --extra-light: #ff6d00 ;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: Arial, Helvetica, sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.discrp {
  text-align: center;
  padding-top: 150px;
}

.discrp h1 {
  margin-bottom: 20px;
  font-size: 4rem;
}

.discrp p {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  font-size: 20px;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  position: relative;
  isolation: isolate;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.section__header::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  width: 10rem;
  background-color: var(--text-dark);
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  color: var(--white);
  background-color: var(--text-dark);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text-light);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
 font-family:Arial, Helvetica, sans-serif;;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}

.nav__logo img {
  max-width: 150px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #ffffff;
  transition: transform 0.5s;
  z-index: -1;
  
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight:bold;
  color: var(--text-light);
}

.nav__links a :hover{
  color:#ff6d00;
}

.about__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.about__image img {
  max-width: 450px;
  margin-inline: auto;
}

.about__content .section__header {
  margin-bottom: 4rem;
}

.about__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.about__btn {
  margin-top: 4rem;
  text-align: center;
}

.separator-line {
  height: 2px;
  background-color: #FFA07A;
 
}

.footer__container {
  display: grid;
  gap: 4rem;
}

.footer__col .section__header {
  margin-inline-start: unset;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.footer__col p {
  line-height: 1.75rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__socials li {
  margin-bottom: 3px;
}

.footer__socials a {
  padding: 5px 9px;
  font-size: 1.1rem;
  color: var(--text-light);
  
}

.footer__socials a:hover {
  color: var(--extra-light);
}

.footer__bar {
  padding: 1rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
 
  .input__row {
    display: flex;
    gap: 2rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: absolute;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a:hover {
    color:#ff6d00 ;
  }

 
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__content {
    max-width: 450px;
    margin-inline: auto;
  }

  .about__content .section__header {
    margin-inline-start: unset;
  }

  .about__content :is(p, .about__btn) {
    text-align: left;
  }
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .discrp {
    padding-top: 100px;
  }
  .discrp p {
    width: 80%;
  }
}

/* Tablet devices (max-width: 1023px) */
@media (max-width: 1023px) {
  .discrp {
    padding-top: 120px;
  }
  .discrp p {
    width: 70%;
  }
}

/* Large desktop devices (min-width: 1200px) */
@media (min-width: 1200px) {
  .discrp p {
    width: 50%;
  }
}