@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #ef160e;
  --primary-dark: #cc130c;
  --primary-light: #ffebf0;
  --secondary: #f67ba5;
  --accent: #fdb83f;
  --dark: #1d2327;
  --gray: #666;
  --light-gray: #f9f9f9;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.95);
  --glass-dark: rgba(29, 35, 39, 0.95);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: var(--dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 48px; /* Touch target size */
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(239, 22, 14, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 22, 14, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.light-gray {
  background-color: var(--light-gray);
}

.flex-center-gap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

/* Header */
.header {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  border-bottom: 2.5px solid var(--primary);
  padding-bottom: 2px;
  transition: var(--transition);
}

/* Dropdown Menu Styles */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 28px;
}

.nav-link i {
  font-size: 11px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
  padding: 10px;
  z-index: 1100;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Hero Slider */
.hero {
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
}

/* Hide scrollbar for Glider.js */
.glider::-webkit-scrollbar,
.glider-hero::-webkit-scrollbar {
  display: none;
}
.glider,
.glider-hero {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-slider-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.glider-hero, 
.glider-hero .glider-track {
  height: 100% !important;
}

.slide-image-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slide-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-info-bar {
  flex: 0 0 auto;
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.hero-info-content {
  text-align: center;
}

.hero-info-content h1 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-info-content p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

.dots-hero {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}
.prev-btn-hero { left: 30px; }
.next-btn-hero { right: 30px; }

/* Cards Section */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.welcome-section .card-grid {
  margin-top: 20px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content-single {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text h5 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* Internal Pages */
.page-banner {
  height: 300px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-banner h1 {
  color: var(--white);
  font-size: 48px;
  position: relative;
  z-index: 1;
}

.content-section {
  padding: 60px 0;
  line-height: 1.8;
}

.content-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary);
}

.content-section p {
  margin-bottom: 20px;
}

/* Event Cards */
.event-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 30px;
  align-items: center;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-reverse {
  flex-direction: row-reverse;
}

.event-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.event-content {
  flex: 1;
}

.event-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* Sidebar / Submenu for About Us */
.submenu {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.submenu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
}

.submenu a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  .page-banner h1 {
    font-size: 32px;
  }
}

/* Activities Page Rows */
.activity-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: left;
}
.activity-row:nth-child(even) {
  flex-direction: row-reverse;
}
.activity-image {
  flex: 0 0 360px;
  max-width: 360px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  background: #f5f5f5;
}
.activity-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.activity-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--primary);
}
.activity-content ul {
  margin-bottom: 0;
  padding-left: 1.2em;
  color: var(--gray);
  list-style: disc;
}
/* Remove bullet points for activity-content lists */
.activity-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}
.activity-content p {
  margin-bottom: 0;
  color: var(--gray);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  transition: opacity 0.3s;
}
.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 2.5rem;
  padding: 8px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}
.lightbox-prev {
  left: 32px;
}
.lightbox-next {
  right: 32px;
}

/* --- Global Mobile Styles --- */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 50px 0;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  .header {
    padding: 10px 0;
  }
  .logo img {
    height: 50px;
  }
  .nav-menu {
    gap: 20px;
  }
  .slide-content {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on mobile for cleaner look */
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    display: flex; /* Always flex, but moved off-screen */
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }

  .nav-link.active {
    border-bottom: none;
    color: var(--primary);
    font-weight: 700;
  }

  .hero,
  .hero-slider-wrapper {
    height: calc(100vh - 60px);
  }

  .hero-info-bar {
    padding: 20px 0;
  }

  .hero-info-content h1 {
    font-size: 22px;
  }

  .hero-info-content p {
    font-size: 14px;
  }

  .dots-hero {
    bottom: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: 30%;
  }
  
  .prev-btn-hero { left: 10px; }
  .next-btn-hero { right: 10px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links li {
    justify-content: center;
  }

  .activity-row, 
  .activity-row:nth-child(even) {
    flex-direction: column;
    padding: 20px;
  }

  .activity-image {
    max-width: 100%;
    flex: none;
  }

  /* Event Cards Mobile */
  .event-card,
  .event-card.event-reverse {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .event-card img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .bank-table td {
    display: block;
    width: 100% !important;
    padding: 5px 0;
  }
  
  .bank-table td:first-child {
    border-bottom: none;
    padding-top: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
  }
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
