* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background: #f3e1d5;
  color: #733938;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 8%;

  backdrop-filter: blur(10px);

  position: fixed;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #cf9490;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #733938;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #cf9490;

  position: absolute;
  bottom: -5px;
  left: 0;

  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: #733938;
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
}

.menu-btn {
  display: none;
  font-size: 26px;
}

/* HERO */

.hero {
  position: relative;

  padding: 150px 8% 100px;

  min-height: 100vh;
}

/* abstract shapes */

.hero-bg-shape {
  width: 450px;
  height: 450px;

  background: #cf9490;

  position: absolute;

  top: -120px;
  right: -120px;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.4;
}

.hero-bg-shape2 {
  width: 400px;
  height: 400px;

  background: #809d87;

  position: absolute;

  bottom: -150px;
  left: -150px;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.5;
}

.hero-container {
  display: grid;

  grid-template-columns: 1.1fr 1fr;

  align-items: center;

  gap: 80px;
}

/* hero text */

.hero-text h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text span {
  color: #cf9490;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 500px;
}

/* buttons */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #733938;
  color: white;

  padding: 14px 30px;

  border: none;
  border-radius: 30px;

  cursor: pointer;
}

.btn-outline {
  border: 2px solid #733938;

  padding: 12px 28px;

  border-radius: 30px;

  background: transparent;

  cursor: pointer;
}

.btn-outline:hover {
  background: #733938;
  color: white;
}

/* hero cards */

.hero-card {
  display: grid;
  gap: 20px;
}

.card {
  background: white;

  padding: 30px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);

  background: #b5ccbd;
}

/* responsive */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}
/* SERVICES SECTION */

.services {
  padding: 120px 8%;
  background: #b5ccbd;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* service block */

.service {
  display: flex;
  align-items: center;
  gap: 40px;

  background: white;

  padding: 40px;

  border-radius: 20px;

  position: relative;

  transition: 0.4s;
}

/* alternate layout */

.service:nth-child(even) {
  flex-direction: row-reverse;
}

/* big number */

.service-number {
  font-size: 70px;
  font-weight: 700;

  color: #cf9490;

  min-width: 120px;
}

/* content */

.service-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  color: #555;

  max-width: 500px;
}

/* hover effect */

.service:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* decorative side bar */

.service::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 6px;
  height: 100%;

  background: #733938;

  border-radius: 20px 0 0 20px;
}

/* responsive */

@media (max-width: 800px) {
  .service {
    flex-direction: column;
    text-align: center;
  }

  .service:nth-child(even) {
    flex-direction: column;
  }

  .service-number {
    font-size: 50px;
  }
}
/* PORTFOLIO */

.portfolio {
  padding: 120px 8%;

  background: #f3e1d5;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;

  margin-bottom: 50px;

  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;

  border-radius: 25px;

  border: none;

  background: #b5ccbd;

  cursor: pointer;

  font-weight: 500;
}

.filter-btn.active {
  background: #733938;
  color: white;
}

.filter-btn:hover {
  background: #809d87;
  color: white;
}

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.project-card {
  background: white;

  padding: 40px 25px;

  border-radius: 15px;

  transition: 0.3s;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-10px);

  background: #f6c094;
}

.project-card h3 {
  margin-bottom: 10px;
}

/* ABOUT SECTION */

.about {
  padding: 120px 8%;

  background: #f3e1d5;
}

.about-container {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 80px;

  align-items: center;
}

/* left text */

.about-left h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* stats */

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  background: #b5ccbd;

  padding: 20px 25px;

  border-radius: 12px;

  text-align: center;
}

.stat h3 {
  font-size: 28px;
  color: #733938;
}

/* right cards */

.about-right {
  display: grid;
  gap: 25px;
}

.about-card {
  background: white;

  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);

  background: #f6c094;
}

/* responsive */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-stats {
    justify-content: center;
  }
}
.contact-section {
  padding: 140px 8%;

  background: #f3e1d5;

  position: relative;
}

.contact-wrapper {
  max-width: 1100px;

  margin: auto;

  text-align: center;
}

/* headline */

.contact-intro h2 {
  font-size: 44px;

  margin-bottom: 10px;
}

.contact-intro p {
  max-width: 600px;

  margin: auto;

  margin-bottom: 60px;

  color: #5a4a45;
}

/* cards */

.contact-cards {
  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;

  margin-bottom: 60px;
}

.contact-card {
  background: white;

  padding: 30px;

  border-radius: 16px;

  width: 280px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);

  background: #f6c094;
}

/* floating form */

.contact-form-box {
  background: #733938;

  padding: 40px;

  border-radius: 20px;

  max-width: 700px;

  margin: auto;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-box form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 14px;

  border: none;

  border-radius: 8px;
}

.contact-form-box button {
  padding: 14px;

  border: none;

  background: #cf9490;

  color: white;

  border-radius: 30px;

  cursor: pointer;

  font-weight: 600;
}

.contact-form-box button:hover {
  background: #809d87;
}

/* responsive */

@media (max-width: 768px) {
  .contact-intro h2 {
    font-size: 32px;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* FOOTER */

.footer {
  background: #733938;

  color: white;

  padding: 70px 8% 20px;
}

.footer-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 40px;

  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;

  font-size: 14px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f6c094;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  padding-top: 20px;

  text-align: center;

  font-size: 14px;
}
