/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #ddd;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 50px;
}

.logo-container span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}



/* HERO */
.hero {
  height: 100vh;
  position: relative;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: brightness(70%) grayscale(10%);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  background: #000;
  color: #fff;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
}

/* SECTIONS */
section {
  padding: 80px 50px;
}

section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* ABOUT SUMMARY */
.about-summary {
  background: #f9f9f9;
}

.about-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
  align-items: center;
}

.about-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.count {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-link {
  font-weight: 600;
  color: #000;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item img {
  width: 50px;
  margin-bottom: 15px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

/* CONTACT */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
}

.contact button {
  background: #000;
  color: #fff;
  padding: 15px;
  border: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #ddd;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 24px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 35px;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
/* MISSION SECTION */
.mission-section {
  background: #fff;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.mission-list {
  list-style: none;
}

.mission-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c00000;
  font-weight: bold;
}

/* SLIDER */
.mission-slider {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
}

.mission-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.mission-slide.active {
  opacity: 1;
}

/* DOTS */
.mission-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.mission-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.mission-dots .dot.active {
  background: #c00000;
}

/* MOBILE */
@media (max-width: 900px) {
  .mission-container {
    grid-template-columns: 1fr;
  }

  .mission-slider {
    height: 300px;
  }
}
/* PAGE HERO */
.page-hero {
  height: 50vh;
  background: url('../images/about-hero.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

/* ABOUT PAGE */
.about-page-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-page-image img {
  width: 100%;
  border-radius: 20px;
}

/* STATS */
.about-stats {
  background: #f9f9f9;
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* VALUES */
.values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.value-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* CTA */
.about-cta {
  text-align: center;
  background: #000;
  color: #fff;
}

.about-cta p {
  margin: 15px 0 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-content h1 {
    font-size: 2.2rem;
  }
}
/* PLANS */
.plans-intro {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.plans-section {
  background: #f9f9f9;
}

.plans-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.plan-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.plan-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.plan-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.plan-card li {
  margin-bottom: 8px;
}

.plan-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #333;
}

.plan-card.featured {
  border: 2px solid #000;
}

/* CTA */
.plans-cta {
  text-align: center;
  background: #000;
  color: #fff;
}
.funeral-plans-section {
  padding: 50px 20px;
}

.funeral-plans-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

.plan {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.plan-image {
  width: 200px;
  height: auto;
  border-radius: 5px;
}

.plan-details h3 {
  margin: 0 0 10px 0;
  font-size: 1.5em;
  color: #222;
}

.plan-details p {
  margin: 5px 0;
  color: #555;
}
/* FUNERAL PLANS */
.funeral-plans-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.funeral-plans-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #000;
}

.plan {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plan-image {
  width: 220px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.plan-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.plan-details p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plan {
    flex-direction: column;
    text-align: center;
  }

  .plan-image {
    width: 100%;
    max-width: 300px;
  }
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.plan-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plan-image {
  width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.plan-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.plan-details p,
.plan-details ul {
  font-size: 1rem;
  margin-bottom: 10px;
}

.plan-details ul {
  padding-left: 20px;
}

.plan-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plan-card {
    flex-direction: column;
    text-align: center;
  }

  .plan-image {
    width: 100%;
    max-width: 250px;
  }
}
/* GALLERY GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Dropdown caret cursor */
nav ul li > a,
nav ul li > span {
  cursor: pointer;
}

/* Show dropdown on hover */
nav ul li:hover > ul {
  display: block;
}

/* Mobile: toggle dropdown on click */
@media (max-width: 768px) {
  nav ul li ul {
    position: static;
    border: none;
  }
  nav ul li:hover > ul {
    display: none; /* prevent hover on mobile */
  }
}
.branches-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.branches-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #000;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.branch-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.branch-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #222;
}

.branch-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .branches-grid {
    grid-template-columns: 1fr;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #ddd;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 50px;
}

.logo-container span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  font-weight: 600;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 200px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li a {
  display: block;
  padding: 10px 20px;
}

nav ul li ul li a:hover {
  background: #f5f5f5;
}

/* HERO */
.page-hero {
  height: 50vh;
  background: url('../images/about-hero.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1.2rem;
}

/* BRANCHES SECTION */
.branches-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.branches-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #000;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.branch-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.branch-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #222;
}

.branch-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
}

/* CONTACT FORM */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 20px;
}

.contact-form h2,
.contact-map h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c00000;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #ddd;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 24px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .branches-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* CONTACT CTA SECTION */
.contact-cta {
  background: #0b0b0b;
  color: #fff;
  padding: 80px 40px;
}

.contact-cta-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  align-items: center;
}

.cta-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
}

.cta-logo {
  width: 250px;
  margin-bottom: 20px;
}

.cta-links {
  list-style: none;
}

.cta-links li {
  margin-bottom: 10px;
}

.cta-links a {
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.cta-links a:hover {
  color: #c00000;
}

/* CTA BUTTON AREA */
.cta-action {
  text-align: center;
}

.cta-action h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #c00000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
  background: #a00000;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-action h2 {
    font-size: 1.8rem;
  }

  .contact-cta {
    padding: 60px 20px;
  }
}
/* PLANS – IMAGE ON TOP */
.plan-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-image {
  width: 100%;
  max-width: 280px;
  margin-bottom: 20px;
}

.plan-details ul {
  text-align: left;
}
/* CASKET GALLERY – CASH SERVICES */
.casket-gallery-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.casket-gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.gallery-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.casket-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.casket-item {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casket-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.casket-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.casket-item span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

/* MOBILE */
@media (max-width: 768px) {
  .casket-item img {
    height: 220px;
  }
}
/* CASKET IMAGE HOVER – FIXED 800x550 RATIO */
.casket-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* 800x550 */
  overflow: hidden;
  border-radius: 12px;
}

.casket-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hide hover image by default */
.casket-image .hover-img {
  opacity: 0;
}

/* Swap on hover */
.casket-item:hover .hover-img {
  opacity: 1;
}

.casket-item:hover .casket-image img:first-child {
  opacity: 0;
}

/* Subtle zoom for premium feel */
.casket-item:hover img {
  transform: scale(1.03);
}

/* MOBILE – disable hover */
@media (hover: none) {
  .casket-image .hover-img {
    display: none;
  }

  .casket-image img {
    transform: none;
  }
}
/* FIX TEXT & BUTTON OVERLAPPING SITE-WIDE */
h1, h2, h3, p {
  margin-bottom: 20px;
}

.hero-btn,
.plan-btn,
a.button,
button {
  display: inline-block;
  margin-top: 20px;
  line-height: normal;
  position: relative;
  z-index: 2;
}
/* CURRENT SPECIALS */
.specials-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.specials-section h2 {
  font-family: 'Impact', sans-serif; /* using Impact as requested */
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.specials-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.special-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.special-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.special-item h3 {
  font-family: 'Impact', sans-serif;
  font-size: 1.5rem;
  margin: 15px 0 10px 0;
  color: #222;
}

.special-item p {
  font-size: 1rem;
  color: #555;
  padding: 0 15px 20px 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .specials-section h2 {
    font-size: 2rem;
  }

  .special-item img {
    height: 180px;
  }
}
/* CURRENT SPECIALS */
.specials-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.specials-section h2 {
  font-family: 'Impact', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.specials-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.special-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Make images responsive and uniform */
.special-item img {
  width: 100%;
  max-height: 180px; /* smaller max height */
  height: auto;
  object-fit: contain; /* prevent cropping */
  border-bottom: 1px solid #eee;
}

.special-item h3 {
  font-family: 'Impact', sans-serif;
  font-size: 1.4rem;
  margin: 15px 0 10px 0;
  color: #222;
}

.special-item p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 15px 15px 15px;
  margin-bottom: 10px;
  flex-grow: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .specials-section h2 {
    font-size: 2rem;
  }

  .special-item img {
    max-height: 150px;
  }
}
.home-videos {
  padding: 60px 20px;
  text-align: center;
}

.home-videos h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 videos side by side */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.video-item {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 10px;
  overflow: hidden;
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive: stack videos on smaller screens */
@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: 1fr; /* single column on tablets and phones */
  }
}
.home-video-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.home-video-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.video-tile {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-tile iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* maintains proper video ratio */
  border: none;
}

.video-tile span {
  display: block;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  text-align: center;
}

.video-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr; /* stack vertically on mobile */
  }
}
.home-videos {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.home-videos h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.video-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap; /* force side by side */
}

.video-item {
  flex: 1;
  max-width: 33%; /* each video takes 1/3 */
  aspect-ratio: 16 / 9; /* maintain video ratio */
  overflow: hidden;
  border-radius: 12px;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:12px;
  flex-wrap:wrap;
}
.hero-btn.secondary{
  background: transparent;
  border: 2px solid #fff;
}
.hero-btn.secondary:hover{
  background: rgba(255,255,255,0.15);
}

.mission-slider{
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.mission-slide{
  display: none;
  width: 100%;
  height: 420px;       /* change height if you want */
  object-fit: cover;
}

.mission-slide.active{
  display: block;
}

.mission-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mission-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.mission-dots .dot.active{
  background: rgba(255,255,255,0.95);
}

.mission-slider{
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.mission-slide{
  display: none !important;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.mission-slide.active{
  display: block !important;
}

.mission-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mission-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.mission-dots .dot.active{
  background: rgba(255,255,255,0.95);
}

.hero{
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Stack slides */
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
  z-index: 0;
}

/* Only active visible */
.hero-slide.active{
  opacity: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
}

/* optional: keep buttons nice */
.hero-cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:12px;
  flex-wrap:wrap;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Gallery grid (if you already have, keep yours) */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-item img{
  width:100%;
  height:180px;
  object-fit:cover;
  cursor:pointer;
  border-radius:8px;
}

/* Lightbox */
.lightbox{
  display:none;
  position:fixed;
  z-index:9999;
  inset:0;
  background: rgba(0,0,0,0.92);
  justify-content:center;
  align-items:center;
}

.lightbox img{
  max-width:90%;
  max-height:80%;
  border-radius:10px;
}

.lightbox-prev,
.lightbox-next{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  font-size:45px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
  padding:12px 16px;
  user-select:none;
}

.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }

.lightbox-close{
  position:absolute;
  top:18px;
  right:28px;
  font-size:45px;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

