* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: white;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

/* LOGO WITH IMAGE */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #f4b400;
}

.logo img {
  height: 70px;        /* desktop size */
  width: auto;
}

/* MOBILE LOGO SIZE */
@media (max-width: 768px) {
  .logo {
    font-size: 14px;
  }

  .logo img {
    height: 30px;      /* smaller on mobile */
  }
}


.nav-links a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f4b400;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 3rem;
}

.overlay p {
  margin-top: 15px;
  font-size: 1.2rem;
}

/* BUTTON */
.btn {
  margin-top: 25px;
  padding: 15px 35px;
  background: #f4b400;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* SECTION */
.section {
  padding: 100px 10%;
  text-align: center;
}

.text {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* BACKGROUNDS */
.bg-one {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url("assets/1.jpg") center/cover fixed;
}

.bg-two {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url("assets/2.jpg") center/cover fixed;
}

.bg-three {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
              url("assets/3.jpg") center/cover fixed;
}

.bg-four {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
              url("assets/interior2.jpg") center/cover fixed;
}

.bg-five {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
              url("assets/4.jpg") center/cover fixed;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service {
  background: rgba(255,255,255,0.15);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-10px);
}

/* IMAGE GRID FIX */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;               /* better spacing */
  margin-top: 50px;
}

.grid img {
  width: 100%;
  height: 260px;           /* 🔑 SAME HEIGHT FOR ALL */
  object-fit: cover;       /* crop nicely, no stretch */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* CONTACT SECTION SPACING */
#contact {
  padding: 140px 10%;     /* more breathing room */
}

#contact .text {
  margin-bottom: 40px;   /* space above button */
}

/* BUTTON SPACING */
.btn {
  margin-top: 40px;
  margin-bottom: 50px;   /* 🔑 SPACE BELOW BUTTON */
}


/* PULSE BUTTON */
.pulse {
  animation: pulse 1.5s infinite;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 5000;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}




/* POINTER EFFECT */
.zoom-img {
  cursor: zoom-in;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,180,0,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(244,180,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,180,0,0); }
}

/* FOOTER */
footer {
  background: black;
  text-align: center;
  padding: 20px;
}

/* HAMBURGER MENU */
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ROTATION WHEN OPEN */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* COLLAPSIBLE MENU */
.nav-links {
  position: absolute;
  top: 65px;
  right: 10%;
  background: rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.nav-links a {
  margin: 12px 0;
  font-size: 18px;
}

/* SHOW MENU */
.nav-links.open {
  display: flex;
}

/* DESKTOP VIEW */
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-links a {
    margin-left: 25px;
  }
}


/* For mobile phone 
/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

  /* NAVBAR */
  nav {
    padding: 12px 6%;
  }

  .logo {
    font-size: 16px;
  }

  /* HERO */
  .hero {
    height: 90vh;
  }

  .overlay h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .overlay p {
    font-size: 1rem;
    margin-top: 10px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* SECTIONS */
  .section {
    padding: 70px 6%;
  }

  h2 {
    font-size: 1.8rem;
  }

  .text {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* SERVICES */
  .services {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service {
    padding: 22px;
    font-size: 15px;
  }

  /* IMAGE GRID */
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid img {
    height: 220px;   /* smaller for mobile */
  }

  /* CONTACT */
  #contact {
    padding: 90px 6%;
  }

  .enquiry-btn {
    margin-bottom: 40px;
  }

  .contact-info p {
    font-size: 14px;
  }

  /* LIGHTBOX */
  .lightbox img {
    max-width: 95%;
    max-height: 80%;
  }

  /* HAMBURGER MENU */
  .nav-links {
    right: 6%;
    width: 88%;
    text-align: center;
  }

  .nav-links a {
    font-size: 16px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 420px) {

  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .grid img {
    height: 200px;
  }
}
