/* style.css — Main Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@400;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --black: #000000;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== WORKING HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

/* ===== LOGO STYLES ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 3px 0;
}

/* ===== DESKTOP NAVIGATION ===== */
.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    height: 100vh;
    width: 70%;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0; /* Slides in */
  }
  
  .main-nav a {
    display: block;
    padding: 15px;
    font-size: 18px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: var(--black);
  }
  
  .main-nav a::after {
    display: none; /* Hide desktop underline on mobile */
  }
/* Hide close button by default (desktop) */





  /* Close button for mobile only */
  .close-menu {
    display: none; /* Hidden when menu is closed */
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
    z-index: 1002;
  }
  
  
 
 
  .main-nav.active .close-menu {
    display: block;  /*Show only when menu is open AND on mobile */
  }
  
  /* Animate hamburger */
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero .tagline {
  font-size: 22px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
}

.btn.primary:hover {
  background: #c19e2f;
  transform: scale(1.05);
}

/* ===== SERVICES HIGHLIGHT ===== */
.services-highlight {
  padding: 80px 0;
  text-align: center;
}

.services-highlight h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--black);
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.event-list li {
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event-list li:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 80px 0;
  background: #f9f9f9;
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}

.testimonial .container {
  max-width: 800px;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: italic;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}

.testimonial-attribution {
  text-align: right;
  margin-top: 24px;
  font-style: normal;
  font-weight: 600;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.4s;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(to bottom right, var(--gold), #b8860b);
  color: var(--black);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #aaa;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero .tagline { font-size: 18px; }
  
  .main-nav {
    display: none; /* Mobile menu not implemented — static site */
  }

  .services-highlight h2,
  .gallery h2,
  .cta-section h2 {
    font-size: 28px;
  }

  .event-list {
    gap: 10px;
  }

  .event-list li {
    padding: 8px 16px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial blockquote {
    font-size: 20px;
  }
}

/* Add to style.css if missing */
.packages-main {
  padding: 80px 0;
}

.packages-intro {
  text-align: center;
  margin-bottom: 60px;
}

.packages-intro h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--black);
  margin-bottom: 16px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.package-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.package-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  display: block;
}

.package-card .description {
  margin-bottom: 20px;
  color: var(--black);
}

.package-card .inclusions ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.package-card .inclusions li {
  margin: 6px 0;
}

.packages-notes {
  text-align: center;
  padding: 32px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  font-style: italic;
  color: var(--black);
  margin-top: 40px;
}

.packages-notes .highlight {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

/* ===== REDESIGNED SERVICES PAGE STYLES ===== */

/* Page Hero */
.services-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/services-hero-bg.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 80px;
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 16px;
}

.services-hero .subtitle {
  font-size: 22px;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Section Base */
.services-detailed {
  overflow: hidden;
}

.service-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service-section:last-of-type {
  border-bottom: none;
}

/* Service Container: 2-column layout */
.service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.service-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

.service-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: block;
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.02);
}

/* Alternating Layout: Even sections (image on left) */
.service-section:nth-child(even) .service-container {
  grid-template-columns: 1fr 1fr;
}

/* Odd sections: image on right (default) — no change needed */

/* Final CTA Section */
.services-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(to bottom right, var(--gold), #b8860b);
  color: var(--black);
  margin-top: 60px;
}

.services-cta h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 16px;
}

.services-cta p {
  font-size: 20px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive: Tablet & Mobile */
@media (max-width: 992px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-section {
    padding: 60px 0;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero .subtitle {
    font-size: 19px;
  }

  .service-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 50vh;
  }

  .service-content h2::after {
    width: 40px;
  }

  .service-content p {
    font-size: 17px;
  }

  .services-cta h2 {
    font-size: 32px;
  }

  .services-cta p {
    font-size: 18px;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Hero */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/contact-hero.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto;
}

/* Main Layout */
.contact-main {
  padding: 40px 0 80px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 32px;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #b8860b;
}

/* Contact Form */
.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 24px;
  position: relative;
}

.contact-form-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 17px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn.primary:hover {
  background: #c19e2f;
  transform: translateY(-2px);
}

/* Form Status */
.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}
.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}
.form-status.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}

/* Responsive: Tablet & Mobile */
@media (max-width: 992px) {
  .contact-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 40vh;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
  .contact-hero p {
    font-size: 18px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .contact-info,
  .contact-form-wrapper {
    text-align: center;
  }
  .contact-item h3,
  .contact-item p {
    text-align: center;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/about-hero.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 12px;
}

.about-hero .subtitle {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto;
}

/* Main Layout */
.about-main {
  padding: 40px 0 80px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Section Headings */
.about-intro h2,
.about-values h2,
.about-inclusions h2,
.about-cta h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--black);
  margin-bottom: 24px;
  position: relative;
}

.about-intro h2::after,
.about-values h2::after,
.about-inclusions h2::after,
.about-cta h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

/* Intro Text */
.about-intro p {
  font-size: 19px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0 48px;
}

.value-card {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

/* Inclusions List */
.about-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
  columns: 2;
  column-gap: 40px;
}

.about-inclusions li {
  margin-bottom: 12px;
  break-inside: avoid;
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}

.about-inclusions li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-inclusions .note {
  font-style: italic;
  color: #777;
  font-size: 17px;
  margin-top: 16px;
  padding: 12px;
  background: #fff8e1;
  border-radius: 6px;
}

/* CTA Section */
.about-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
}

.about-cta h2 {
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 20px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 40vh;
  }
  .about-hero h1 {
    font-size: 32px;
  }
  .about-hero .subtitle {
    font-size: 18px;
  }
  .about-intro h2,
  .about-values h2,
  .about-inclusions h2,
  .about-cta h2 {
    font-size: 28px;
  }
  .about-inclusions ul {
    columns: 1;
    column-gap: 0;
  }
  .values-grid {
    gap: 16px;
  }
  .value-card {
    padding: 20px;
  }
}







/*For Hamburger to work you Need this*/
  .site-header { background: white; position: sticky; top: 0; z-index: 1000; }
    .nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
    .hamburger { display: none; flex-direction: column; background: none; border: none; cursor: pointer; }
    .hamburger span { width: 25px; height: 3px; background: black; margin: 3px 0; }
    .main-nav { display: flex; gap: 30px; }
    .main-nav a { text-decoration: none; }
    
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; background: white; transition: right 0.3s; }
      .main-nav.active { right: 0; }
    }
	
	
	
	.close-menu {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .main-nav.active .close-menu {
    display: block;
  }
}