
  :root {
  --primary-red: #C8102E;
  --deep-red: #7A0F1E;
  --dark: #1F1F1F;
  --gold: #D4A73C;
  --cream: #FFF7E9;
}

/* GLOBAL */
html, body {
  width: 100%;
  overflow-x: hidden;
  background: #ddd8d8 !important;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
  color: var(--deep-red);
}

/* ------------------------- */
/* 🚀 PERFECT NAVBAR LAYOUT */
/* ------------------------- */

/* Navbar box */
.navbar {
  background: #fff !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Custom header row inside navbar */
.navbar-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 12px;
}

/* Branding group (logo + text) */
.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo box */
.logo-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Brand Title */
.brand-text {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

/* Toggle button */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* Nav link styling */
.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary-red) !important;
}

/* ------------------------- */
/* 📱 MOBILE RESPONSIVE FIX */
/* ------------------------- */
@media (max-width: 767px) {
  
  .navbar-header-custom {
    padding: 8px 14px !important;
  }

  .logo-box {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 14px !important;
  }
}

/* ------------------------- */
/* HERO SECTION */
/* ------------------------- */
.hero {
  background: #fff !important;
  padding: 60px 0;
  width: 100%;
  max-width: 100%;
}

/* Buttons */
.btn-red {
  background: var(--primary-red);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-radius: 30px;
  padding: 10px 22px;
}

/* Cards */
.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.membership-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.price {
  font-size: 28px;
  color: var(--deep-red);
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--deep-red);
  color: #fff;
  padding: 35px 0;
}

/* Hide toggle in desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* Mobile: Show toggle */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block !important;
  }
}


/* COLLAGE WRAPPER */
.image-collage {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 20px;
}

/* All images styling */
.collage-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: all 0.4s ease;
}

/* Hover Animation */
.collage-img:hover {
  transform: scale(1.05);
  z-index: 5;
}

/* Image 1 — Top left */
.img-1 {
  width: 55%;
  height: 55%;
  top: 0;
  left: 0;
  z-index: 3;
}

/* Image 2 — Bottom left (bigger) */
.img-2 {
  width: 70%;
  height: 65%;
  top: 35%;
  left: 5%;
  z-index: 2;
}

/* Image 3 — Right side (tall & clear) */
.img-3 {
  width: 45%;
  height: 85%;
  top: 10%;
  right: 0;
  z-index: 1;
}


/* sponcres css */

.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.sponsor-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Hover effect */
.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Categories */
.platinum {
  border-color: #C0C0C0;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
}

.gold {
  border-color: #D4A73C;
  background: linear-gradient(135deg, #fff8e1, #ffefc1);
}

.silver {
  border-color: #bfbfbf;
  background: linear-gradient(135deg, #f9f9f9, #e6e6e6);
}

/* membership css */


/* Background Image */
.membership-section {
  background: url('images/membership-bg.jpg') center/cover no-repeat fixed;
  position: relative;
}

.membership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

/* Ensure content stays above overlay */
.membership-section .container {
  position: relative;
  z-index: 2;
}

/* Card Styling */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  background: rgba(255, 255, 255, 0.4);
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(122, 15, 30, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #7A0F1E;
}

.icon-circle.gold {
  background: rgba(212, 167, 60, 0.2);
  color: #D4A73C;
}

/* Premium Highlight */
.premium {
  border: 2px solid #D4A73C;
}

.family {
  border: 2px solid #7A0F1E20;
}

/* Price */
.price {
  font-size: 28px;
  font-weight: 700;
  color: #7A0F1E;
}

/* Button */
.btn-red {
  background: var(--primary-red);
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
}

.btn-red:hover {
  background: var(--deep-red);
}


/* event css */
/* Tabs Styling */
.nav-tabs .nav-link {
  font-weight: 600;
  color: #7A0F1E;
  border: none;
  padding: 10px 18px;
}

.nav-tabs .nav-link.active {
  background: #C8102E;
  color: #fff !important;
  border-radius: 6px;
}

/* Event Cards Enhanced */
.event-card {
  transition: 0.3s ease;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* contact css */

/* Contact Section Background */
.contact-section {
  background: linear-gradient(180deg, #fff7e9, #ffffff);
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  border-radius: 12px;
  border-left: 6px solid #C8102E;
}

/* Social Icons */
.social-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:#7A0F1E;
  border:1px solid #ddd;
  transition:0.3s ease;
}

.social-circle:hover {
  background:#C8102E;
  color:#fff;
}

/* Form Box */
.contact-form {
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 16, 46, 0.15);
}

/* Inputs */
.input-custom {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  transition:0.2s ease;
}

.input-custom:focus {
  border-color:#C8102E;
  box-shadow:0 0 0 0.1rem rgba(200,16,46,0.25);
}
  

/* footer css */

/* Footer Section */
.custom-footer {
  background: #7A0F1E;
  color: #fff;
  border-top: 6px solid #D4A73C;
}

/* Footer Titles */
.footer-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

/* Footer Headings */
.footer-heading {
  color: #D4A73C;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.footer-text {
  font-size: 14px;
  color: #f5eaea;
}

/* Social Icons */
.social-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #7A0F1E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #D4A73C;
  color: #fff;
}

/* Footer Links */
.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #f8f3f3;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #D4A73C;
}

/* Bottom Strip */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.9;
}

.program-card {
    border: 1px solid #eee;
    transition: 0.3s ease;
    background: #fafafa;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    background: #ffffff;
}

.program-card img {
    border: 4px solid #ffffff;
}


/* news/blogs  */

.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content h5 {
    color: #7A0F1E;
    margin-bottom: 8px;
}

.read-more {
    color: #C8102E;
    font-weight: 600;
    text-decoration: none;
}




