@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --nav-footer-color: #161616;
  --mobile-menu-color: rgba(36, 36, 36, 0.5);
  --text-color: #000000;
  --paragraf-color: #535353;
  --link-color: #ffffff;
  --accent-color: #ffa600;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', serif;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
/* Buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--link-color);
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}
/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  height: 100px;
  width: 100%;
  z-index: 1000;
  background-color: var(--nav-footer-color);
}
header .logo {
  padding: 5px 0;
  height: 80px;
}
nav .menu {
  display: flex;
  list-style: none;
}
nav .menu li {
  margin: 0 1.5em;
}
nav .menu li a {
  color: var(--link-color);
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav .menu li a:hover {
  color: var(--accent-color);
}
/* Mobile Menu */
nav .mobile-menu {
  position: fixed;
  display: none;
  flex-direction: column;
  padding: 25px 0;
  top: 100px;
  right: 0;
  width: 100%;
  list-style: none;
  background-color: var(--mobile-menu-color);
}
nav .mobile-menu li {
  padding: 15px 25px;
  text-align: end;
}
nav .mobile-menu li a {
  color: var(--link-color);
  font-size: 1.3em;
  text-decoration: none;
}
/* Show mobile menu when active */
nav .mobile-menu.active {
  display: flex;
}
/* Hamburger Icon */
nav .hamburger {
  display: none;
  padding: 10px 0;
  cursor: pointer;
}
nav .hamburger span {
  display: block;
  width: 35px;
  height: 1px;
  background-color: var(--link-color);
  margin: 5px 0;
  transition: transform 0.3s ease;
}
/* Hamburger active animation */
nav .hamburger.ham-active span:nth-child(1) {
  background-color: var(--accent-color);
  transform: rotate(45deg) translate(1px, 4px);
}
nav .hamburger.ham-active span:nth-child(2) {
  display: none;
}
nav .hamburger.ham-active span:nth-child(3) {
  background-color: var(--accent-color);
  transform: rotate(-45deg) translate(-1px, -4px);
}
/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url('../assets/hero-bg.png') no-repeat center center / cover;
  background-size: cover;
}
.hero h1 {
  color: var(--link-color);
  margin-bottom: 0.5em;
  font-size: 4em;
}
.hero p {
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
  text-align: center;
  color: var(--link-color);
}
.hero p span:first-child {
  font-size: 2em;
}
.hero p span:last-child {
  font-size: 1.5em;
}
/* Services Section */
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5em 0;
}
.services h2 {
  margin: 2em 0;
  font-size: 3em;
}
.services button {
  margin-top: 5em;
}
.service1,
.service2,
.service3 {
  display: flex;
  align-items: center;
  margin: 3em 0;
}
.service2 {
  flex-direction: row-reverse;
}
.service-text {
  padding: 0 50px;
  width: 50%;
}
.service-text h3 {
  font-size: 1.5em;
}
.service-text p {
  margin: 1em 0;
  color: var(--paragraf-color);
}
.service-img {
  padding: 0 50px;
  width: 50%;
  text-align: center;
}
.service-img img {
  width: 100%;
  border-radius: 15px;
}
/* About Us */
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5em;
  padding: 5em 0;
}
.about-us h1 {
  font-size: 3em;
  margin-bottom: 1em;
}
.about-us-content {
  display: flex;
  align-items: center;
  margin: 3em 0;
  width: 100%;
}
.about-us-text {
  padding: 0 50px;
  width: 50%;
}
.about-us-text p {
  margin: 1em 0;
  color: var(--paragraf-color);
}
.about-us-img {
  padding: 0 50px;
  width: 50%;
  text-align: center;
}
.about-us-img img {
  width: 100%;
  border-radius: 15px;
}
/* Prices */
.prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3em;
  padding: 5em 0;
}
.prices h1 {
  margin: 1em;
  font-size: 3em;
}
.prices-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
.prices-list h3 {
  width: 80%;
  text-align: left;
  font-size: 1.5em;
}
.serivces-prices {
  padding: 1em 0;
  width: 80%;
}
.serivces-prices ul {
  color: var(--paragraf-color);
  list-style: none;
}
.serivces-prices ul li {
  border-bottom: 1px solid var(--paragraf-color);
}
.serivces-prices dt {
  color: var(--paragraf-color);
}
.serivces-prices hr {
  height: 1px;
  background-color: var(--paragraf-color);
  border: none;
}
.wrapper-body {
  display: flex;
  flex-direction: column;
}
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full height of the viewport */
}
footer {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

/* Media Queries */
/* Larger screens */
@media (min-width: 1025px) {
  nav .mobile-menu.active {
    display: none;
  }
}
/* Mobile devices */
@media (max-width: 1024px) {
  nav .menu {
    display: none;
  }
  nav .hamburger {
    display: block;
  }
  .service1,
  .service2,
  .service3 {
    flex-direction: column;
    align-items: center;
  }
  .service-text {
    padding: 0;
    width: 70%;
    text-align: center;
  }
  .service-img {
    padding: 0;
    width: 100%;
  }
  .service-img img {
    margin-top: 1em;
    width: 70%;
    height: auto;
  }
  .about-us-content {
    flex-direction: column;
  }
  .about-us-text {
    padding: 0;
    width: 70%;
    text-align: center;
  }
  .about-us-img {
    padding: 0;
    width: 100%;
  }
  .about-us-img img {
    margin-top: 1em;
    width: 70%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 20px 10px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p span:first-child {
    font-size: 2em;
  }
  .hero p span:last-child {
    font-size: 1.5em;
  }
  nav .menu {
    display: none;
  }
  nav .hamburger {
    display: block;
  }
  .service1,
  .service2,
  .service3 {
    flex-direction: column;
    align-items: center;
  }
  .service-text {
    padding: 0;
    width: 70%;
    text-align: center;
  }

  .service-img {
    padding: 0;
    width: 100%;
  }
  .service-img img {
    margin-top: 1em;
    width: 70%;
    height: auto;
  }
  .about-us-content {
    flex-direction: column;
  }
  .about-us-text {
    padding: 0;
    width: 70%;
    text-align: center;
  }
  .about-us-img {
    padding: 0;
    width: 100%;
  }
  .about-us-img img {
    margin-top: 1em;
    width: 70%;
    height: auto;
  }
  .prices h1 {
    text-align: center;
    font-size: 2em;
  }
}
