/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(0, 0, 0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #cc8e09;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color: #db8420;
}

/* ===== Body ===== */
body {
  font-family: 'Playfair Display', serif;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #000;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* ===== ABOUT SECTION ===== */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 20px;
}

.about-image img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.about-text {
  flex: 1 1 350px;
  max-width: 600px;
  text-align: justify;
  line-height: 1.4;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #cc8e09;
}
/* ===== OUR PRODUCTS HEADING SIZE FIX ===== */
.about-services h3 {
  font-size: 2.5rem;   /* size kootti */
  margin-bottom: 25px;
  color: #cc8e09;
  font-weight: 700;
}

/* Mobile balance */
@media (max-width:768px){
  .about-services h3{
    font-size: 2rem;
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:18px;
  padding:20px;
}

.gallery-grid img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:12px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.whatsapp-btn img {
  width: 28px;
}

/* ===== Footer ===== */
footer.footer {
  margin-top:auto;
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* ===== Back Arrow ===== */
.back-arrow-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.back-arrow {
  font-size: 22px;
  cursor: pointer;
  color: #b37707;
  font-weight: bold;
}

/* ===================================
   MOBILE RESPONSIVE FIX
=================================== */

.menu-toggle{
  display:none;
  font-size:28px;
  color:#cc8e09;
  cursor:pointer;
}

@media (max-width:768px){

  .navbar{
    padding:15px 20px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#000;
    display:none;
    text-align:center;
  }

  .nav-links ul{
    flex-direction:column;
    gap:20px;
    padding:20px 0;
  }

  .nav-links ul li{
    margin:10px 0;
  }

  .nav-links.active{
    display:block;
  }

  .hero{
    height:85vh;
    padding:0 20px;
  }

  .hero h1{
    font-size:28px;
  }

  .hero p{
    font-size:14px;
  }

  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

}
/* ===== EXPLORE BUTTON ===== */
.explore-btn {
  background: linear-gradient(45deg,#805404,#fdba02,#1f1302);
  color:#fff;
  padding:14px 34px;
  border-radius:35px;
  text-decoration:none;
  display:inline-block;
  transition:.3s;
}

.explore-btn:hover { 
  transform:scale(1.08); 
}

/* ===== EXPLORE SERVICES BUTTON ===== */
.explore-services-btn {
  display: inline-block;
  background: #000;
  color: #e2b332;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.explore-services-btn:hover {
  background: #e0c27f50;
  color: #ad6a11;
  transform: translateY(-3px);
}
/* ===== PRODUCT LIST BOX STYLE ===== */

.about-services-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-services-list li {
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

/* Hover Highlight Effect */
.about-services-list li:hover {
  background: #fff3d4;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  color: #b37707;
}