:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #fdf4ec;
  --text: #2b1d26;
  --muted: #76666f;
  --primary: #7b1e3a;
  --primary-dark: #5e142b;
  --accent: #d9a441;
  --border: #eadfd7;
  --shadow: 0 12px 30px rgba(76, 35, 54, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(217,164,65,0.10), transparent 30%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 55%, #fffaf5 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #4f4048;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.home-hero,
.page-hero {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.home-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0 56px;
}

.home-hero-content h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-text,
.page-hero p {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(123, 30, 58, 0.20);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: white;
  color: var(--primary);
  border-color: var(--border);
}

.home-hero-card,
.diwali-preview-card,
.callout-card,
.contact-highlight {
  background:
    linear-gradient(135deg, rgba(123,30,58,0.96), rgba(94,20,43,0.96));
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.home-hero-card h2,
.diwali-preview-card h2,
.callout-card h2,
.contact-highlight h2 {
  color: white;
}

.home-hero-card p,
.diwali-preview-card p,
.callout-card p,
.contact-highlight p {
  color: rgba(255,255,255,0.88);
}

.hero-icon,
.diwali-symbol {
  font-size: 4rem;
  margin-bottom: 18px;
}

.section {
  width: min(1180px, 88%);
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.year-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  color: var(--primary);
}

.section-heading p {
  color: var(--muted);
}

.feature-grid,
.year-preview-grid,
.photo-grid,
.gallery-preview-grid,
.contact-grid,
.celebration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.year-preview-card,
.photo-card,
.gallery-card,
.contact-card,
.event-card,
.registration-card,
.event-details-card,
.event-description-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.contact-card,
.event-card-content {
  padding: 26px;
}

.feature-icon,
.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3,
.year-preview-card h3,
.photo-card p,
.gallery-card p,
.contact-card h2,
.event-card h3 {
  color: var(--primary);
}

.home-celebrations,
.alt-section {
  position: relative;
}

.year-preview-card {
  padding: 28px;
  transition: transform 0.2s ease;
}

.year-preview-card:hover {
  transform: translateY(-4px);
}

.year-number,
.year-heading span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.centre-button {
  margin-top: 28px;
}

.gallery-preview-grid,
.photo-grid {
  margin-top: 12px;
}

.photo-placeholder,
.gallery-placeholder,
.event-image-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  font-size: 2.3rem;
  background:
    linear-gradient(135deg, rgba(217,164,65,0.12), rgba(123,30,58,0.08));
  color: var(--primary);
}

.photo-card,
.gallery-card,
.event-card {
  overflow: hidden;
}

.photo-card p,
.gallery-card p {
  padding: 18px 20px 22px;
  margin: 0;
  font-weight: 700;
}

.diwali-preview-card,
.callout-card,
.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.diwali-date {
  font-weight: 700;
  font-size: 1.05rem;
}

.page-hero {
  padding: 72px 0 30px;
}

.celebration-year {
  padding-top: 44px;
}

.year-heading {
  margin-bottom: 28px;
}

.event-card {
  height: 100%;
}

.event-card-content p {
  color: var(--muted);
}

.event-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.small-text {
  font-size: 0.9rem;
}

.event-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.event-poster {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.event-details-card,
.event-description-card,
.registration-card {
  padding: 26px;
  margin-bottom: 24px;
}

.event-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.event-detail:last-child {
  border-bottom: 0;
}

.event-detail span {
  font-size: 1.4rem;
}

.event-detail p {
  margin: 4px 0 0;
  color: var(--muted);
}

.event-description-card p {
  color: var(--muted);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.event-tags span {
  background: var(--surface-soft);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.registration-card h2 {
  color: var(--primary);
}

.registration-intro,
.form-note {
  color: var(--muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d9c9cf;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,30,58,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.radio-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.radio-group input {
  width: auto;
}

.form-button {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.contact-grid {
  margin-bottom: 34px;
}

.site-footer {
  margin-top: 50px;
  padding: 34px 6%;
  text-align: center;
  background: #2d1720;
  color: rgba(255,255,255,0.9);
}

.site-footer p {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .home-hero,
  .event-page-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .year-preview-grid,
  .photo-grid,
  .gallery-preview-grid,
  .contact-grid,
  .celebration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diwali-preview-card,
  .callout-card,
  .contact-highlight {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 5%;
  }

  .brand {
    font-size: 1.05rem;
  }

  .home-hero,
  .page-hero,
  .section {
    width: min(92%, 1180px);
  }

  .home-hero {
    padding-top: 44px;
  }

  .home-hero-content h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 54px 0;
  }

  .feature-grid,
  .year-preview-grid,
  .photo-grid,
  .gallery-preview-grid,
  .contact-grid,
  .celebration-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .home-hero-card,
  .diwali-preview-card,
  .callout-card,
  .contact-highlight,
  .registration-card,
  .event-details-card,
  .event-description-card {
    padding: 22px;
    border-radius: 20px;
  }

  .photo-placeholder,
  .gallery-placeholder,
  .event-image-placeholder {
    min-height: 170px;
  }
}

/* MOBILE HOMEPAGE FIXES */
@media (max-width: 620px) {

  .site-header {
    padding: 16px 20px;
    position: static;
  }

  .brand {
    font-size: 1.15rem;
    white-space: normal;
  }

  .main-nav {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 6px;
    width: 100%;
  }

  .main-nav a {
    font-size: 0.9rem;
    flex: 0 0 auto;
  }

  .home-hero {
    min-height: auto;
    padding: 34px 0 30px;
    gap: 28px;
  }

  .home-hero-content h1 {
    font-size: 3rem;
    line-height: 0.98;
    margin-bottom: 22px;
  }

  .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .button {
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
  }

  .home-hero-card {
    padding: 28px 22px;
    text-align: center;
  }

  .home-hero-card h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-icon {
    font-size: 3rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .feature-card,
  .year-preview-card,
  .photo-card,
  .gallery-card,
  .contact-card,
  .event-card-content {
    padding: 22px;
  }

  .year-preview-card h3 {
    font-size: 1.4rem;
  }

  .diwali-preview-card,
  .callout-card,
  .contact-highlight {
    padding: 24px;
  }

  .diwali-preview-card h2,
  .callout-card h2,
  .contact-highlight h2 {
    font-size: 2rem;
  }

  .site-footer {
    padding: 28px 20px;
  }
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .brand {
    max-width: 75%;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fffaf5;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    overflow: visible;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.active::after {
    display: none;
  }
}
.form-attempted input:invalid,
.form-attempted textarea:invalid,
.form-attempted select:invalid {
  border-color: #b42318;
}

.form-attempted input:focus:invalid,
.form-attempted textarea:focus:invalid,
.form-attempted select:focus:invalid {
  outline: 2px solid rgba(180, 35, 24, 0.15);
}

.success-message {
  margin-bottom: 20px;
  color: #18794e;
  line-height: 1.6;
}

.whatsapp-box {
  margin-top: 18px;
  padding: 22px;
  border: 2px solid #25d366;
  border-radius: 16px;
  background: #f0fff5;
  text-align: center;
  color: #173b27;
}

.whatsapp-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.whatsapp-box p {
  margin: 6px 0 16px;
}

.whatsapp-button {
  display: inline-block;
  padding: 13px 22px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-button:hover {
  opacity: 0.9;
}

.success-message {
  margin-top: 28px;
  margin-bottom: 24px;
}
.payment-box {
  margin-top: 20px;
  margin-bottom: 22px;
  padding: 22px;
  border: 2px solid #d9a441;
  border-radius: 16px;
  background: #fffaf0;
  color: #2f2a2a;
}

.payment-box > strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.amount-to-pay {
  margin: 14px 0 18px;
  padding: 14px;
  border-radius: 12px;
  background: #7b1e3a;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.payment-box p {
  margin: 8px 0;
  line-height: 1.5;
}
.ticket-total-box {
  margin: 22px 0;
  padding: 18px;
  background: #fff8e8;
  border: 2px solid #d9a441;
  border-radius: 14px;
}

.ticket-total-box label {
  font-weight: 700;
  color: #7b1e3a;
  font-size: 1.05rem;
}

.ticket-total-box input {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #7b1e3a;
  background: white;
}

.ticket-price-note {
  margin: 10px 0 0;
  text-align: center;
  font-weight: 600;
  color: #555;
}
.ticket-price-note {
  line-height: 1.6;
}


@media (max-width: 620px) {
  .page-hero {
    padding-top: 35px !important;
    padding-bottom: 5px !important;
    min-height: auto !important;
  }

  .page-hero h1 {
  font-size: 1.7rem !important;
  line-height: 1.15 !important;
  max-width: 100% !important;
}
  .diwali-event-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .event-poster {
    margin-top: 0 !important;
  }
}
.gallery-cta {
  background: #7f203d !important;
  color: #ffffff !important;
  padding: 42px 32px !important;
  border-radius: 28px !important;
  margin: 20px auto !important;
}

.gallery-cta .eyebrow,
.gallery-cta h2,
.gallery-cta p {
  color: #ffffff !important;
}

.gallery-cta .button {
  display: inline-block !important;
  margin-top: 24px !important;
  background: #ffffff !important;
  color: #7f203d !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.gallery-social {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #fff7f4;
  border: 1px solid #ead8d2;
  border-radius: 28px;
  text-align: center;
}

.gallery-social h2 {
  color: #7f203d;
  margin: 0 0 16px;
}

.gallery-social p {
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.gallery-social .button {
  display: inline-block;
  background: #7f203d;
  color: #ffffff !important;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
/* Gallery years section */
.gallery-years-section {
  padding-top: 10px !important;
}

.gallery-years-section .gallery-year h2 {
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #7f203d !important;
  margin: 0 0 18px !important;
}

@media (max-width: 620px) {
  .gallery-years-section {
    padding-top: 0 !important;
  }
}
.gallery-years-section .gallery-album h3 {
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #7f203d !important;
  margin: 8px 0 10px !important;
}

.gallery-years-section .gallery-album-icon {
  margin-top: 4px;
  margin-bottom: 4px;
}
/* Gallery album cards */
.gallery-years-section .gallery-album {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff7f4;
  border: 1px solid #ead8d2;
  border-radius: 20px;
  padding: 18px 20px;
  margin-top: 12px;
  text-decoration: none;
  color: inherit;
}

.gallery-years-section .gallery-album-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.gallery-years-section .gallery-album h3 {
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #7f203d !important;
  margin: 0 0 6px !important;
}

.gallery-years-section .gallery-album p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.gallery-years-section .gallery-album:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}
/* Reduce space below gallery albums */
.gallery-years-section {
  padding-bottom: 20px !important;
}

.gallery-years-section .gallery-year:last-child {
  margin-bottom: 0 !important;
}
/* Tighten space before gallery CTA */
.gallery-years-section + .section {
  padding-top: 20px !important;
}

@media (max-width: 620px) {
  .gallery-years-section + .section {
    padding-top: 10px !important;
  }
}
/* Space between gallery years */
.gallery-years-section .gallery-year + .gallery-year {
  margin-top: 28px !important;
}

/* Larger mobile website header */
@media (max-width: 620px) {
  .brand {
    font-size: 1.35rem !important;
    line-height: 1.2;
  }
}
/* Space between gallery years */
.gallery-years-section .gallery-year + .gallery-year {
  margin-top: 45px !important;
}
@media (max-width: 620px) {
  .site-header .brand {
    font-size: 1.20rem !important;
  }
}
/* Reduce gap before photos on gallery photo pages only */
.section:has(.photo-grid) {
  padding-top: 25px !important;
}

@media (max-width: 620px) {
  .section:has(.photo-grid) {
    padding-top: 15px !important;
  }
}
.gallery-photo-section {
  padding-top: 20px !important;
  padding-bottom: 0 !important;
}

@media (max-width: 620px) {
  .gallery-photo-section {
    padding-top: 0px !important;
    padding-bottom: 0px !important;    
  }
}

/* Compact Back to Gallery area */
.gallery-back-section {
  width: min(92%, 1180px);
  margin: 0 auto;
  padding: 25px 0;
}

@media (max-width: 620px) {
  .gallery-back-section {
    padding: 8px 0;
  }
}
/* Reduce gap between Contact intro and contact cards */
/* Reduce gap between Contact intro and contact cards */
.page-hero + .contact-page {
  padding-top: 0 !important;
}

.page-hero:has(+ .contact-page) {
  padding-bottom: 0 !important;
}

@media (max-width: 620px) {
  .page-hero + .contact-page {
    padding-top: 0 !important;
  }

  .page-hero:has(+ .contact-page) {
    padding-bottom: 0 !important;
  }
}
/* Celebrations page - tighter mobile layout */
@media (max-width: 620px) {

  /* Description to first 2024 section */
  .page-hero + .celebration-year {
    padding-top: 5px !important;
  }

  .page-hero:has(+ .celebration-year) {
    padding-bottom: 0 !important;
  }

  /* Less space around each year */
  .celebration-year {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .year-heading {
    margin-bottom: 12px !important;
  }

  /* Shorter cards */
  .celebration-year .event-image-placeholder {
    min-height: 90px !important;
  }

  .celebration-year .event-card-content {
    padding: 16px 18px !important;
  }

  .celebration-year .event-card-content p {
    margin-bottom: 10px !important;
  }

  .celebration-year .celebration-grid {
    gap: 12px !important;
  }
}
/* Home page - balanced mobile hero */
@media (max-width: 620px) {

  .home-hero-content {
  text-align: left;
}

.home-hero-content h1 {
  font-size: 1.7rem;
  line-height: 1.05;
  margin-bottom: 18px;
  text-align: left;
}

.home-hero-content .eyebrow,
.home-hero-content .hero-tagline,
.home-hero-content .hero-text {
  text-align: left;
}
  .hero-tagline {
    font-size: 1.18rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
  }

  .hero-text {
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }

  .hero-buttons {
    gap: 12px !important;
  }

  .hero-buttons .button {
    padding: 14px 20px !important;
  }

  .home-hero-card {
    padding: 26px 22px !important;
  }
}
/* HOME PAGE - compact mobile layout */
@media (max-width: 620px) {

  /* Smaller section headings */
  .section-heading h2 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .home-hero-card h2,
  .diwali-preview-card h2 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }

  /* Reduce large gaps between Home sections */
  .home-hero {
    padding-bottom: 20px !important;
  }

  .section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .section-heading {
    margin-bottom: 22px !important;
  }

  .home-celebrations,
  .gallery-preview,
  .diwali-preview,
  .contact-preview {
    padding-top: 32px !important;
  }
}
/* FINAL HOME MOBILE SPACING FIX */
@media (max-width: 620px) {

  /* Make all home sections compact */
  main > .section {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  /* Remove extra gaps between consecutive sections */
  main > .section + .section {
    margin-top: 0 !important;
  }

  /* Heading spacing */
  .section-heading {
    margin-bottom: 18px !important;
  }

  .section-heading h2 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  /* Journey cards */
  .year-preview-grid {
    gap: 14px !important;
  }

  .centre-button {
    margin-top: 18px !important;
  }

  /* Specifically remove excess space before Gallery */
  .gallery-preview {
    padding-top: 18px !important;
  }

  /* Reduce space after About */
  .home-celebrations {
    padding-top: 18px !important;
  }
}
.home-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.home-gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-gallery-card p {
  margin: 0;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

/* HOME GALLERY - mobile fix */
@media (max-width: 620px) {

  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .photo-placeholder {
    min-height: 110px !important;
    padding: 18px !important;
    font-size: 1.8rem !important;
    border-radius: 16px;
  }

  .photo-placeholder p {
    font-size: 1rem !important;
    margin: 5px 0 0 !important;
    text-align: center;
  }
}
/* HOME HERO COVER */
.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #7b1e3a;
}

.home-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.home-hero-overlay {
  text-align: center;
  padding: 34px 20px 42px;
  background: linear-gradient(
    180deg,
    #7b1e3a 0%,
    #68172f 100%
  );
  color: white;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e7bd63;
}

.home-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: white;
}

.hero-tagline {
  max-width: 720px;
  margin: 14px auto 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f6e9ed;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: #d9a441;
  color: #4f1026;
}

.btn-secondary {
  border: 1px solid #e7bd63;
  color: white;
  background: transparent;
}

@media (min-width: 768px) {
  .home-hero-overlay {
    padding: 42px 24px 50px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }
}
/* ===== HOMEPAGE HERO FIX ===== */

.home-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fffaf5;
  overflow: hidden;
}

.home-hero-image {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

.home-hero-overlay {
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 24px 55px;
  text-align: left;
  background: transparent;
  color: #2b1d26;
}

.home-hero .hero-kicker {
  margin: 0 0 14px;
  color: #7b1e3a;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-hero h1 {
  margin: 0 0 20px;
  color: #2b1d26;
  font-family: "Playfair Display", serif;
}

.home-hero .hero-tagline {
  margin: 0 0 28px;
  max-width: 700px;
  color: #2b1d26;
  font-weight: 500;
}

.home-hero .hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.home-hero .hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.home-hero .btn-primary {
  background: #7b1e3a;
  color: #fff;
}

.home-hero .btn-secondary {
  background: #fff;
  color: #7b1e3a;
  border: 2px solid #7b1e3a;
}

@media (max-width: 767px) {
  .home-hero-image {
    width: 100%;
    margin: 0;
  }

  .home-hero-overlay {
    padding: 30px 24px 45px;
  }

  .home-hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }
}
/* ===== HOMEPAGE HERO POLISH ===== */

.home-hero {
  background: #fffaf3;
}

/* Cover image - no burgundy showing around it */
.home-hero-image {
  display: block;
  width: 100%;
  margin: 0;
  background: #fffaf3;
}

/* Text area */
.home-hero-overlay {
  text-align: center;
  padding: 52px 28px 70px;
  background: #fffaf3;
}

/* WELCOME TO */
.home-hero .hero-kicker {
  color: #b8872e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0 0 18px;
}

/* Main heading */
.home-hero h1 {
  font-family: "Playfair Display", serif;
  color: #7b1e3a;
  font-size: clamp(42px, 9vw, 62px);
  line-height: 1.02;
  letter-spacing: -1px;
  max-width: 620px;
  margin: 0 auto 22px;
}

/* Decorative gold line */
.home-hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d9a441;
  margin: 22px auto 0;
}

/* Tagline */
.home-hero .hero-tagline {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
  color: #49383f;
}

/* Mobile */
@media (max-width: 600px) {
  .home-hero-overlay {
    padding: 44px 24px 60px;
  }

  .home-hero h1 {
    font-size: 45px;
    line-height: 1.05;
  }

  .home-hero .hero-tagline {
    font-size: 18px;
  }
}
@media (max-width: 600px) {

  .home-hero-overlay {
    padding-top: 30px !important;
    padding-bottom: 38px !important;
  }

  .home-hero .hero-kicker {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  .home-hero h1 {
    margin-bottom: 18px !important;
  }

  .home-hero .hero-tagline {
    margin-bottom: 26px !important;
  }
}
@media (max-width: 600px) {
  .home-hero h1 {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }
}
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 3.1rem !important;
    line-height: 1.02 !important;
  }

  .hero-tagline {
    font-size: 1.35rem !important;
    line-height: 1.45 !important;
  }
}
@media (max-width: 768px) {

  .home-hero {
    padding-bottom: 15px !important;
    min-height: auto !important;
  }

  .home-hero-overlay {
    padding-bottom: 20px !important;
  }

  .home-hero + .section {
    padding-top: 25px !important;
  }
}
@media (max-width: 768px) {
  .home-hero .home-hero-overlay h1 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-hero .hero-tagline {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }
}
@media (max-width: 768px) {
  .home-hero-overlay {
    padding-bottom: 28px !important;
  }

  .home-hero + .section {
    padding-top: 22px !important;
  }
}
@media (max-width: 768px) {
  .home-hero-overlay {
    padding-top: 24px !important;
  }
}
/* FINAL HOME HERO MOBILE SPACING */
@media (max-width: 768px) {
  .home-hero {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .home-hero-overlay {
    margin: 0 !important;
    padding: 22px 24px 28px !important;
  }
}
/* Tighten hero to About Us gap */
@media (max-width: 768px) {
  .home-hero-overlay {
    padding-bottom: 8px !important;
  }

  .home-hero + .section {
    padding-top: 12px !important;
  }
}
/* FINAL HERO HEIGHT TIGHTENING */
@media (max-width: 768px) {

  .home-hero-overlay {
    padding-top: 32px !important;
    padding-bottom: 24px !important;
  }

  .home-hero .hero-tagline {
    margin-bottom: 22px !important;
  }

  .home-hero .hero-buttons {
    margin-top: 0 !important;
  }

  .home-hero + .section {
    padding-top: 18px !important;
  }
}
/* HOME ABOUT HEADING - MOBILE */
@media (max-width: 768px) {
  .home-hero + .section .section-heading h2 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }
}
/* ===== HOME PAGE CARD COMPACTING ===== */
@media (max-width: 768px) {

  /* About feature cards */
  .feature-card {
    padding: 20px 22px !important;
  }

  .feature-card .feature-icon {
    margin-bottom: 8px !important;
  }

  .feature-card h3 {
    margin-bottom: 10px !important;
  }

  .feature-card p {
    margin-bottom: 0 !important;
  }

  /* Journey cards */
  .year-preview-card {
    padding: 20px 22px !important;
  }

  .year-preview-card h3 {
    margin-bottom: 8px !important;
  }

  .year-preview-card p {
    margin-bottom: 0 !important;
  }

  /* Diwali 2026 card */
  .diwali-preview-card {
    padding: 28px 24px !important;
    gap: 12px !important;
  }

  .diwali-preview-card h2 {
    font-size: 1.8rem !important;
  }

  .diwali-preview-card p {
    margin-bottom: 14px !important;
  }

  .diwali-symbol {
    font-size: 3rem !important;
    margin: 4px 0 0 !important;
  }
}
/* DIWALI HOME CARD - COMPACT MOBILE */
@media (max-width: 620px) {

  .diwali-preview-card {
    min-height: 0 !important;
    height: auto !important;
    padding: 28px 24px 30px !important;
    display: block !important;
  }

  .diwali-preview-card h2 {
    margin-bottom: 16px !important;
  }

  .diwali-preview-card p {
    margin-bottom: 16px !important;
  }

  .diwali-preview-card .button {
    margin-top: 6px !important;
    margin-bottom: 18px !important;
  }

  .diwali-symbol {
    display: block !important;
    font-size: 2.2rem !important;
    margin: 4px 0 0 !important;
    line-height: 1 !important;
  }
}
@media (max-width: 620px) {
  .contact-highlight h2 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }
}
/* FINAL HOMEPAGE MOBILE POLISH */
@media (max-width: 620px) {

  /* Compact Diwali card */
  .diwali-preview-card {
    min-height: 0 !important;
    height: auto !important;
    padding: 26px 24px 28px !important;
  }

  /* Move diya up */
  .diwali-symbol {
    font-size: 2rem !important;
    margin: 0 0 12px !important;
    line-height: 1 !important;
    order: -1;
  }

  .diwali-preview-card .button {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }

  /* Reduce empty space in Stay Connected */
  .contact-preview {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  .contact-preview .button {
    margin-bottom: 0 !important;
  }

  /* Bring footer closer */
  .contact-preview + .site-footer {
    margin-top: 0 !important;
  }
}
