/* =====================================================
   GLOBAL SETTINGS
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f8f8;
  color: #222;
  line-height: 1.7;
}

/* GOLD THEME COLORS */
:root {
  --gold: #d4af37;
  --gold-light: #ffda56;
  --dark: #222;
  --white: #fff;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 45px;
}

.brand-name {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold);
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  background: url("image/wedding l.jpeg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* avoids navbar overlap */
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  text-align: center;
  color: var(--white);
}

/* Main hero heading with 3D feel */
.viva-heading-3d {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgb(0, 0, 0),
               0 0 10px rgba(212, 175, 55, 0.4);
  transition: 0.3s;
  line-height: 1.3;
}

.viva-heading-3d:hover {
  color: var(--gold);
  transform: translateY(-5px);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.8);
}

.hero h1 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.3;
}

.hero p {
  color: #eee;
  margin: 10px 0;
}

/* =====================================================
   HERO HIGHLIGHTS – PILL BUTTON VERSION
   (Use .hero-highlights + .highlight in HTML if you
    want the gold pill style instead of emoji lines)
===================================================== */
.hero-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.highlight {
  background: #d4af37;
  color: #fff;
  padding: 14px 22px;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  min-width: 200px;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
}

.highlight i {
  font-size: 1.2rem;
  color: #fff;
}

.highlight span {
  display: block;
  line-height: 1.3;
}

.highlight:hover {
  background: #b9952d;
  transform: translateY(-4px);
}

/* =====================================================
   HERO MAIN BUTTONS (Our Services / Book)
===================================================== */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-buttons a {
  background: #d4af37;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  white-space: nowrap;
  min-width: 180px;
  text-align: center;
}

.hero-buttons a:hover {
  background: #b9952d;
  transform: translateY(-3px);
}

/* Old generic buttons (if used somewhere else) */
.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  margin: 0 10px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--white);
  color: var(--gold);
}

/* =====================================================
   SIMPLE EMOJI CATEGORIES (🍾 / 🏛 / 🎨)
   Use: <div class="hero-categories"><div class="cat-item">…</div>…</div>
===================================================== */
.hero-categories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
  margin: 35px 0;
}

.cat-item {
  text-align: center;
  transition: 0.3s;
}

.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.cat-item p {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.cat-item:hover {
  transform: translateY(-6px);
}

.cat-item:hover p {
  color: #d4af37;
}

/* =====================================================
   GLOBAL SECTION HEADINGS
===================================================== */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: var(--dark);
  transition: 0.3s ease;
}

h1:hover,
h2:hover,
h3:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* =====================================================
   3D BOX SECTION WRAPPER (with 3-colour gradient)
===================================================== */
.box-3d {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(235, 235, 240, 0.95),
    rgba(220, 220, 230, 0.95)
  );
  padding: 40px;
  margin: 60px auto;
  width: 90%;
  max-width: 1100px;
  border-radius: 22px;
  border-top: 4px solid #d4af37;
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.15),
    -8px -8px 20px rgba(255, 255, 255, 0.7);
  transition: 0.35s ease;
}

.box-3d:hover {
  transform: translateY(-5px);
  box-shadow:
    10px 10px 26px rgba(0, 0, 0, 0.2),
    -10px -10px 26px rgba(255, 255, 255, 0.8);
}

/* =====================================================
   SERVICES
===================================================== */
.services {
  padding: 50px 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  padding: 25px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-left-color: var(--gold-light);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.card ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

/* =====================================================
   GALLERY
===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* =====================================================
   CONTACT
===================================================== */
.contact {
  padding: 80px 20px;
  background: #f8f5f0;
  display: flex;
  justify-content: center;
}

.contact .box-3d {
  max-width: 850px;
  width: 100%;
}

/* 3D GRADIENT CONTACT BUTTONS (Call / Enquiry) */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}

.btn-call,
.btn-enquiry {
  width: 100%;
  max-width: 420px;
  margin: 6px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 22px;
  border-radius: 40px;
  cursor: pointer;
  border: none;

  color: #fff;
  text-align: center;

  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #e8c65f 45%,
    #b8961f 100%
  );

  box-shadow:
    4px 4px 10px rgba(0, 0, 0, 0.25),
    -4px -4px 10px rgba(255, 255, 255, 0.4);

  transition: 0.3s ease-in-out;
}

.btn-call:hover,
.btn-enquiry:hover {
  transform: translateY(-4px);
  box-shadow:
    6px 6px 16px rgba(0, 0, 0, 0.3),
    -6px -6px 16px rgba(255, 255, 255, 0.5);
}

/* Inquiry Form */
.inquiry-form {
  background: #faf6ee;
  padding: 25px 20px;
  border-radius: 15px;
  margin-top: 25px;
  border: 1px solid #e5d7b8;
  display: none;
}

.inquiry-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
}

.btn-submit {
  background: #d4af37;
  color: #fff;
  padding: 12px 28px;
  border-radius: 35px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #b9952d;
  transform: translateY(-3px);
}

/* Center location + office hours text */
.contact .box-3d p {
  text-align: center !important;
}

#hidden-info p {
  text-align: center;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #ddd;
  backdrop-filter: blur(5px);
}

.social-icons a {
  margin: 0 12px;
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--gold);
}

/* =====================================================
   RESPONSIVE – LARGE TABLETS (≤1024px)
===================================================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 25px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 100px;
    height: auto;
  }

  .viva-heading-3d {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-overlay {
    padding: 30px;
  }

  .gallery-grid img {
    height: 220px;
  }

  .box-3d {
    padding: 30px;
  }
}

/* =====================================================
   RESPONSIVE – SMALL TABLETS (≤768px)
===================================================== */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo {
    width: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 0;
    width: 200px;
    background: var(--white);
    padding: 20px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .viva-heading-3d {
    font-size: 1.9rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 140px 20px 40px;
    height: auto;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 200px;
  }

  .contact .box-3d {
    padding: 30px 20px;
  }

  .btn-call,
  .btn-enquiry {
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  .box-3d {
    padding: 28px 20px;
  }

  .hero-categories {
    gap: 25px;
  }
}

/* =====================================================
   RESPONSIVE – MOBILE PHONES (≤480px)
===================================================== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 6px 12px;
  }

  .logo {
    width: 30px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .menu-toggle {
    font-size: 24px;
  }

  .nav-links {
    top: 55px;
    width: 170px;
  }

  /* Hero */
  .hero {
    height: auto !important;
    padding: 95px 15px 30px !important;
    background-position: center;
  }

  .hero-overlay {
    padding: 18px 15px !important;
    border-radius: 16px;
  }

  .viva-heading-3d {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0.5px !important;
  }

  .hero h1 {
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .hero p {
    font-size: 0.85rem !important;
    line-height: 1.4;
    margin: 6px 0;
  }

  .viva-heading-3d,
  .hero h1 {
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Emoji categories */
  .hero-categories {
    flex-direction: column;
    gap: 18px;
    margin: 25px 0;
  }

  .cat-icon {
    font-size: 2rem;
  }

  .cat-item p {
    font-size: 1.15rem;
  }

  /* Pill highlights (if used) */
  .hero-highlights {
    flex-direction: column;
    gap: 12px;
  }

  .highlight {
    width: 100%;
    max-width: 280px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .highlight i {
    font-size: 1rem;
  }

  /* Hero main buttons */
  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    padding: 10px 18px;
    font-size: 0.9rem;
    margin-top: 8px;
  }

  /* Sections */
  .gallery-grid img {
    height: 150px;
  }

  .box-3d {
    margin: 25px auto;
    padding: 20px 14px;
  }

  .contact .box-3d {
    padding: 22px 15px;
  }

  .btn-call,
  .btn-enquiry {
    font-size: 1rem;
    padding: 14px;
    max-width: 100%;
  }
}
/* =====================================================
   FIXED HERO MAIN BUTTONS
===================================================== */

.hero-buttons {
  display: flex;
  flex-direction: column;       /* stack clean */
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.hero-buttons a {
  background: #d4af37;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 320px;             /* SAME WIDTH */
  height: 55px;                 /* SAME HEIGHT */
  
  transition: 0.3s ease;
  box-shadow:
    4px 4px 10px rgba(0,0,0,0.25),
    -4px -4px 10px rgba(255,255,255,0.4);
}

.hero-buttons a:hover {
  background: #b9952d;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 480px) {
  .hero-buttons a {
    max-width: 100%;
    height: 52px;
    font-size: 0.95rem;
  }
}
/* =====================================================
   PREMIUM GRADIENT HERO BUTTONS (With Icons)
===================================================== */

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.hero-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  width: 100%;
  max-width: 330px;
  height: 58px;

  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #e8c65f 50%,
    #b8961f 100%
  );

  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;

  box-shadow:
    5px 5px 12px rgba(0,0,0,0.28),
    -5px -5px 12px rgba(255,255,255,0.35);

  transition: 0.35s ease-in-out;
}

.hero-buttons a:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 7px 18px rgba(0,0,0,0.30),
    -7px -7px 18px rgba(255,255,255,0.45);
  background: linear-gradient(
    135deg,
    #b8961f 0%,
    #d4af37 50%,
    #e8c65f 100%
  );
}

/* ICON STYLE INSIDE BUTTONS */
.hero-buttons i {
  font-size: 1.3rem;
  color: #fff;
}

/* MOBILE OPTIMIZED */
@media (max-width: 480px) {
  .hero-buttons a {
    max-width: 100%;
    height: 55px;
    font-size: 0.95rem;
  }

  .hero-buttons i {
    font-size: 1.2rem;
  }
}
/* =====================================================
   PERFECT WRAPPED HERO BUTTONS (PRIMARY + SECONDARY)
===================================================== */

.hero-buttons {
  display: flex;
  flex-direction: column;         /* stack clean */
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  width: 100%;
}

/* Base style for both buttons */
.hero-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 330px;               /* perfect equal size */
  height: 58px;                   /* same height */

  padding: 0 25px;
  border-radius: 50px;

  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;

  white-space: nowrap;            /* keeps text in one line */
  text-align: center;

  transition: 0.35s ease-in-out;
}

/* GOLD GRADIENT BUTTON */
.btn-primary {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #e8c65f 50%,
    #b8961f 100%
  );
  color: #fff;

  box-shadow:
    5px 5px 12px rgba(0,0,0,0.28),
    -5px -5px 12px rgba(255,255,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    #b8961f 0%,
    #d4af37 50%,
    #e8c65f 100%
  );
}

/* WHITE/GOLD SECONDARY BUTTON */
.btn-secondary {
  background: #ffffff;
  color: #d4af37;
  border: 3px solid #d4af37;

  box-shadow:
    5px 5px 12px rgba(0,0,0,0.18),
    -5px -5px 12px rgba(255,255,255,0.45);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: #fff6d6;
}

/* MOBILE STYLE */
@media (max-width: 480px) {
  .hero-buttons a {
    max-width: 100%;
    height: 55px;
    font-size: 0.95rem;
  }
}

/* ============================
   HERO CATEGORIES (Desktop)
============================= */
.hero-categories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 55px;
  margin: 35px 0;
}

.cat-item {
  text-align: center;
  transition: 0.3s;
  width: 120px;           /* keeps perfect alignment */
}

.cat-icon {
  font-size: 2.7rem;
  margin-bottom: 10px;
  display: block;
}

.cat-item p {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.7px;
}

.cat-item:hover {
  transform: translateY(-6px);
}

.cat-item:hover p {
  color: var(--gold);
}


/* ============================
   MOBILE (≤480px)
============================= */
@media (max-width: 480px) {

  .hero-categories {
    flex-direction: column;      /* stack vertical */
    gap: 22px;                   /* perfect spacing */
    margin: 25px 0;
    align-items: center;         /* center each item */
  }

  .cat-item {
    width: 100%;
    max-width: 180px;            /* keeps same width for all */
    text-align: center;
  }

  .cat-icon {
    font-size: 2.4rem;           /* slightly smaller for phone */
    margin-bottom: 6px;
  }

  .cat-item p {
    font-size: 1.2rem;
  }
}
