* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: url('images/a6foamed.JPEG?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.5em;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

.hero-text {
  text-align: center;
  margin-bottom: 80px;
}

.hero-text h2 {
  font-size: 2.5em;
}

.btn {
  background: #e63946;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

/* Sections */
.section {
  padding: 80px 50px;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about img {
  width: 45%;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  text-align: left;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Contact */
.contact-form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hero-text h2 {
    font-size: 1.8em;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    padding-bottom: 50px;
  }

  .hero-text h2 {
    font-size: 1.6em;
  }

  .btn {
    padding: 8px 16px;
  }
}
