html, body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;   /* prevent horizontal scroll */
  overflow-y: auto;     /* ✅ enable vertical scroll */
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */

.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}




/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
/* LOGO AREA */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LOGO IMAGE */
.logo img {
  height: 45px;
  width: auto;
}

/* LOGO TEXT */
.logo h1 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.logo h1 span {
  color: #c59d5f;
}
.logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c59d5f; /* optional gold border */
}


/* NAV MENU */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* HOVER UNDERLINE */
.nav ul li a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #c59d5f;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav ul li a:hover {
  color: #c59d5f;
}

.nav ul li a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.btn-cta {
  background: #c59d5f;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-cta:hover {
  background: #b48a50;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .nav.active {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}

nav ul {
  list-style: none;
  display: flex;
}

/* REMOVE BULLETS */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

/* LINKS */
.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

/* HOVER EFFECT */
.nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #c59d5f;
  transition: width 0.3s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center; /* centers items by box */
  gap: 12px;
}

/* 🔥 PERFECT TEXT CENTERING 
.site-title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #222;

  line-height: 1.2;          /* normalize font box */
 /* display: inline-flex;      /* important */
 /* align-items: center;       /* center text inside its box */
 /*
  padding-top: 2px;          /* 🔥 FINAL VISUAL CENTER FIX */
/*}
*/


/* HERO SECTION */
/*.hero {
  height: 70vh;
   height: calc(70vh - 80px); 
  background: url("images/hero.jpg") center/cover no-repeat;
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
} 
*/
.hero {
  position: relative;                 /* ✅ MUST be relative */
  height: calc(70vh - 80px);           /* header-safe height */

  background-image: url("../images/hero-wedding.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #c59d5f;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 28px;
  }
}
/* SERVICES */
.services {
  padding: 70px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #c59d5f;
}
/* GALLERY */
.gallery {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
/* CONTACT */
.contact {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #c59d5f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  line-height: 2;
}

.footer ul li a:hover {
  color: #c59d5f;
}

.footer p {
  font-size: 14px;
}

.footer .copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

/* BLOG */
.blog-hero {
  padding: 80px 20px;
  text-align: center;
  background: #f7f7f7;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card h2 {
  padding: 15px;
  font-size: 20px;
}

.blog-card p {
  padding: 0 15px 15px;
}

.read-more {
  display: inline-block;
  margin: 0 15px 20px;
  color: #c9a25d;
  font-weight: 600;
  text-decoration: none;
}

.blog-post h1 {
  margin-top: 40px;
}

.post-image {
  width: 100%;
  margin: 30px 0;
  border-radius: 12px;
}

.post-meta {
  color: #777;
  font-size: 14px;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: #c9a25d;
  font-weight: 600;
}


