/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background: #000;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= HEADER ================= */
.header {
  background: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.menu {
  width: 28px;
}

.menu span {
  display: block;
  height: 3px;
  background: #000;
  margin: 5px 0;
}

/* ================= MOBILE NAV ================= */
 /* MOBILE MENU PANEL */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #000;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  z-index: 999;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  margin: 15px 0;
  font-size: 18px;
  cursor: pointer;          /* makes it feel clickable */
  transition: 0.2s ease;    /* smooth prototype effect */
}

/* Hover and click effect for prototype feel */
.mobile-nav a:hover,
.mobile-nav a:active {
  color: #DE6627;           /* highlight color on hover/click */
  transform: scale(1.05);   /* slight pop effect */
}

/* When open */
.mobile-nav.active {
  right: 0;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.orange {
  color: #DE6627;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn {
  background: #DE6627;
  border: none;
  padding: 14px 28px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= ABOUT ================= */
.about {
  background: #f5f5f5;
  color: #000;
  padding: 40px 20px;
  font-family: 'Instrument Sans', sans-serif;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.about p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about ul {
  padding-left: 18px;
}

.about li {
  font-size: 14px;
  margin-bottom: 6px;
}

.about-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ================= SERVICES ================= */
.services {
  background: #fff;
  padding: 40px 20px;
  color: #000;
  font-family: 'Instrument Sans', sans-serif;
}

.services h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 40px;
  justify-content: center;
}

.service-card {
  width: 100%;
   padding: 15px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 16px;
  color: #DE6627;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ================= GALLERY ================= */
.gallery {
  background: #fff;
  color: #000;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Instrument Sans', sans-serif;
}

.gallery h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.gallery-sub {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-desc {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-btn {
  background: #DE6627;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Instrument Sans', sans-serif;
}

.footer h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 16px;
  margin-top: 20px;
}

.footer p {
  font-size: 14px;
  margin: 8px 0;
}

.footer a {
  color: #DE6627;
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* ================= DESKTOP ================= */
@media (min-width: 900px) {

  .desktop-nav {
    display: flex;
    gap: 30px;
  }

  .desktop-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
  }

  .menu {
    display: none;
  }

}

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 72px);
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 120px;
  }

  .about-img {
    max-width: 450px;
  }

  .services {
    padding: 80px 120px;
  }

  .gallery {
    padding: 80px 120px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    padding: 60px 120px;
  }

  .desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .desktop-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
  }

  .desktop-nav a:hover {
    color: #DE6627;
  }

  .menu {
    display: none;
  }
}

/* Hide desktop nav on mobile */
.desktop-nav {
  display: none;
}
