/* ---------- RESET & BASE STYLES ---------- */
.section-wrapper {
  padding: 6rem 2rem;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-wrapper iframe {
  width: 100%;
  border-radius: 8px;
}

.promo-strip {
  background-color: var(--light-color);
  padding: 4rem 0;
  text-align: center;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #e60073;
  --accent-color: #f4b400;
  --light-color: #f5f5f5;
  --dark-color: #1a1a1a;
  --text-color: #333;
  --text-light: #fff;
  --border-color: #ddd;
  --overlay-color: rgba(0, 0, 0, 0.6);
  --gradient-start: #1a1a1a;
  --gradient-end: #000000;

  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Roboto', sans-serif;

  --container-width: 1200px;
  --card-width: 330px;
  --header-height: 80px;
  --footer-height: 60px;

  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--body-font);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover, a:focus {
  color: var(--secondary-color);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

h1 { font-size: 4.2rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }

p {
  margin-bottom: 1.5rem;
}

/* ---------- HEADER & NAVIGATION (FIXED) ---------- */
.site-header {
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  height: var(--header-height);
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: block;
  width: 200px;
  height: 60px;
  background-image: url(images/new_images/logo1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.phone-link i {
  color: var(--secondary-color);
}

.phone-link:hover {
  color: var(--secondary-color);
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.main-nav {
  display: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .logo {
    width: 250px;
    height: 80px;
  }

  .header-container {
    flex-wrap: nowrap;
  }
}

body.menu-open {
  overflow: hidden;
}
/* ---------- NAVIGATION STYLING ---------- */
.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-item {
  position: relative;
  margin-left: 1rem;
}

.main-nav .nav-item a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.main-nav .nav-item a:hover,
.main-nav .nav-item a.active {
  color: var(--secondary-color);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.nav-item.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  list-style: none;
  padding: 0.5rem 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 0.8rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  display: block;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--secondary-color);
  padding-left: 2rem;
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--primary-color);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-container {
  padding: 2rem 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link,
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.submenu-toggle i {
  transition: transform var(--transition-fast);
}

.has-submenu.active .submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-nav .submenu {
   padding: 0.5rem 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.has-submenu.active .submenu {
  display: block;
}

.submenu-link {
  display: block;
  padding: 1.2rem 3rem;
  color: #f0f0f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu-link:hover,
.submenu-link:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

/* ---------- BUTTON STYLING ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn:hover, .btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.btn i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  padding: 15rem 0 8rem;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  overflow: hidden;
  margin: 0 0 3rem;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/new_images/Wedding%20Hero.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.hero-heading {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.animated-title {
  color: var(--text-light);
  font-size: 5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}

.hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.6s;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.9s;
}

/* ---------- HERO WAVE ANIMATION ---------- */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('images/new_images/wave.svg');
  background-size: 1000px 100px;
  animation: wave 15s linear infinite;
  z-index: 1;
}

.hero-wave:nth-child(2) {
  opacity: 0.5;
  animation: wave-reverse 20s linear infinite;
  bottom: 10px;
  height: 80px;
}

.hero-wave:nth-child(3) {
  opacity: 0.2;
  animation: wave 25s linear infinite;
  bottom: 20px;
  height: 60px;
}

@keyframes wave {
  0% { background-position-x: 0; }
  100% { background-position-x: 1000px; }
}

@keyframes wave-reverse {
  0% { background-position-x: 1000px; }
  100% { background-position-x: 0; }
}

/* ---------- EQUALIZER ---------- */
.equalizer {
  display: flex;
  justify-content: center;
  gap: 5px;
  height: 30px;
  margin: 0 auto 2rem;
}

.equalizer-bar {
  width: 4px;
  background-color: var(--secondary-color);
  animation: equalize 1s infinite;
}

.equalizer-bar:nth-child(1) { animation-delay: 0s; }
.equalizer-bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.3s; }
.equalizer-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes equalize {
  0%, 100% { height: 5px; }
  50% { height: 30px; }
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  opacity: 0.8;
  z-index: 10;
  animation: fadeInUp 2s ease forwards 1s;
  opacity: 0;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-light);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--text-light);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: 8px; opacity: 1; }
  80% { opacity: 0; }
  100% { top: 32px; opacity: 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
}

/* ---------- CARD STYLES ---------- */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.card {
  width: var(--card-width);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.card-image-wrapper {
  position: relative;
  height: 356px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card h3 {
  color: var(--dark-color);
  padding: 2rem 2rem 1.5rem;
  margin: 0;
  text-align: center;
  font-size: 2.2rem;
}

.card .btn {
  margin: 0 2rem 2rem;
  width: calc(100% - 4rem);
}

/* Shine effect on card hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  transition: all 0.75s;
}

.card:hover::before {
  left: 125%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-info,
.footer-links,
.footer-social {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.copyright {
  margin: 0;
  font-size: 1.4rem;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 992px) {
  html { font-size: 58%; }
  .logo { width: 180px; height: 60px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-container { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 768px) {
  html { font-size: 55%; }
  .logo { width: 160px; height: 50px; }
  .phone-link span { display: none; }
  .phone-link {
    font-size: 2.2rem;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    justify-content: center;
  }
  .hero-section {
    padding: 8rem 0 4rem;
    margin: 0 0 2rem;
  }
  .animated-title { font-size: 3.6rem; }
  .hero-subtitle { font-size: 1.8rem; }
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .logo { width: 140px; height: 45px; }
  .animated-title { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  .btn {
    padding: 1rem 1.8rem;
    font-size: 1.4rem;
  }
}
