body {
  margin: 0;
  font-family: 'Georgia', serif;
  scroll-behavior: smooth;
}

.hero {
  display: flex;
  background: #768d6d;
  color: #fff;
  padding: 40px;
}

.hero-left {
  flex: 1;
  padding-right: 30px;
}

.hero-left h1 {
  font-size: 50px;
  font-style: italic;
}

.hero-left h2 {
  font-size: 32px;
  font-weight: bold;
}

.hero-left p {
  font-style: italic;
  margin: 20px 0;
  line-height: 1.6;
}

.hero-left h3 {
  font-size: 22px;
  font-style: italic;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4e9;
  padding: 20px;
  border-radius: 10px;
}

.hero-right img {
  max-width: 100%;
  border-radius: 10px;
}

.nav-buttons {
  margin-top: 20px;
}

.nav-buttons a {
  text-decoration: none;
  color: #fff;
  margin-right: 15px;
  font-weight: bold;
  background: #4a5b46;
  padding: 8px 15px;
  border-radius: 4px;
}

/* ABOUT SECTION */
.about {
  background: #f4f4e9;
  color: #3d3d3d;
  padding: 60px 40px;
  text-align: center;
}

.about-heading {
  color: #6b2c2c;
  font-size: 28px;
  font-style: italic;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-content p {
  max-width: 600px;
  line-height: 1.8;
  color: #4f4714;
  font-style: italic;
}

.about-content .icon {
  width: 80px;
  height: auto;
  margin: 20px;
}

.about-footer {
  margin-top: 40px;
  font-style: italic;
  color: #768d6d;
  font-size: 20px;
}

/* SERVICES */
.services {
  background: #768d6d;
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.service-title {
  font-style: italic;
  font-size: 24px;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: #f4f4e9;
  color: #333;
  width: 280px;
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-card h3 {
  background: #768d6d;
  color: #fff;
  padding: 10px;
  margin-top: 15px;
  border-radius: 8px;
  font-style: italic;
}

.service-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

.achievements {
  background: #f4f4e9;
  color: #333;
  padding: 60px 30px;
}
.achievements h2 {
  color: #6b2c2c;
  font-style: italic;
  margin-bottom: 20px;
}
.achievements ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  line-height: 1.8;
}
.achievements li::before {
  content: "✔️ ";
  margin-right: 8px;
}

.contact {
  background: #768d6d;
  color: white;
  padding: 60px 30px;
}
.contact h2 {
  font-style: italic;
  margin-bottom: 20px;
}
.contact p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location {
  background: #f4f4e9;
  padding: 60px 30px;
  color: #333;
}
.location h2 {
  color: #6b2c2c;
  font-style: italic;
}
.location iframe {
  margin-top: 20px;
  border-radius: 10px;
  border: none;
  width: 100%;
  height: 300px;
}

nav {
  position: sticky;
  top: 0;
  background: #7a9465;
  text-align: center;
  padding: 10px;
  z-index: 1000;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.nav-buttons a {
  background-color: #e7e4d8; /* Beige matching background */
  color: #1e3f34; /* Dark green text */
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  border: 1px solid #c8c6b4;
  transition: all 0.3s ease;
}

.nav-buttons a:hover {
  background-color: #d5d3c4;
  color: #163328;
  transform: scale(1.05);
}
/* Existing styles remain unchanged from your code above... */

/* Add below to the end of your current CSS file */

/* === GALLERY / PHOTOBOOK / PACKAGES SECTIONS === */
.gallery-section,
.photobook-section,
.packages-section {
  background-color: #f4f4e9;
  padding: 60px 30px;
  color: #2c3e50;
  text-align: center;
}

.gallery-section h2,
.photobook-section h2,
.packages-section h2 {
  color: #6b2c2c;
  font-style: italic;
  margin-bottom: 30px;
}

/* Hexagon Grid Gallery */
.hex-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.hex {
  width: 160px;
  height: 92px;
  margin: 46px 8px;
  background-color: #ccc;
  position: relative;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hex:hover {
  transform: scale(1.05);
}

.hex img,
.hex iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox View */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img,
.lightbox iframe {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* Responsive iFrame for photobook & packages */
.photobook-section iframe,
.packages-section iframe {
  width: 90%;
  height: 600px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
}
