:root {
  --bg-color: #F3D38B;
  /* Classic Mustard/Tan */
  --text-main: #13304A;
  /* Deep navy/black */
  --text-body: #111111;
  /* Darker for reading */
  --accent: #13304A;
  /* Navy structural highlights */
  --accent-gold: #B48A30;
  /* Muted gold */
  --white: #FFFFFF;
  --glass-white: rgba(255, 255, 255, 0.82);
  --glass-tint: rgba(243, 211, 139, 0.88);
  /* Sophisticated tint */
  --notice-bg: #D32F2F;
  /* Notice/Alert Red */
}

.lolc-notice-bar {
  background: var(--notice-bg);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  position: relative;
  z-index: 9999;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

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

html,
body {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Kill all Astra/WP margins and artifacts */
body,
html {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
  background-color: var(--text-main) !important;
}

#wpadminbar,
.site-header,
.site-footer,
.ast-footer-builder,
.ast-small-footer,
#colophon,
.ast-footer-copyright,
[class*="ast-footer"],
.ast-scroll-hint,
.scroll-hint,
.mouse_scroll {
  display: none !important;
}

body {
  background-image: url('../images/parallax_texture.jpeg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: var(--bg-color) !important;
  /* Fallback brand yellow */
}

/* ENSURE FULL-WIDTH TRANSPARENCY WITHOUT BREAKING BOX MODEL */
/* FORCE FULL WIDTH - OVERRIDE ASTRA CONSTRAINTS */
/* BROAD SPECTRUM CONTAINER RESET */
.ast-container,
.site-content,
.entry-content,
#primary,
#main,
.site-main,
.ast-row,
.lolc-page,
#content,
article {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  float: none !important;
  position: static !important;
  /* Kill any positioning that breaks flow */
}

/* Fix for Astra specific layout padding */
.ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.lolc-page {
  font-family: 'EB Garamond', serif;
  color: var(--text-body);
  min-height: 100vh;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  padding-top: 100px;
  margin: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: rgba(0, 0, 0, 0.3) !important;
}

/* PREMIUM SECTION ARCHITECTURE */
.lolc-section {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.lolc-section-frosted {
  background-color: var(--glass-white);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lolc-section-tinted {
  background-color: var(--glass-tint);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.lolc-image-premium {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  margin: 40px 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* MODERN SPLIT SECTIONS */
.lolc-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10%;
  align-items: center;
  margin: 40px 0;
}

.lolc-split.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.lolc-split-img {
  position: relative;
  width: 100%;
}

.lolc-split-img img {
  width: 100%;
  height: clamp(400px, 50vh, 600px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.lolc-split-img::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--accent-gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.lolc-split-text {
  padding: 40px;
}


.lolc-split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 25px;
  line-height: 1.2;
}

.lolc-split-text p {
  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* MODERN GRID GALLERY */
.lolc-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 5vw);
  gap: 20px;
  margin: 60px 0;
}

.lolc-gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.lolc-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}


.item-1 {
  grid-column: 1 / 7;
  grid-row: 1 / 7;
}

.item-2 {
  grid-column: 7 / 13;
  grid-row: 1 / 5;
}

.item-3 {
  grid-column: 7 / 10;
  grid-row: 5 / 9;
}

.item-4 {
  grid-column: 10 / 13;
  grid-row: 5 / 9;
}

.item-5 {
  grid-column: 1 / 4;
  grid-row: 7 / 12;
}

.item-6 {
  grid-column: 4 / 7;
  grid-row: 7 / 12;
}

.item-7 {
  grid-column: 7 / 13;
  grid-row: 9 / 12;
}

/* REVEAL WRAPPER */
.lolc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lolc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  font-weight: 500;
}

p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
}

a {
  color: var(--text-main);
  text-decoration: underline;
}

/* HEADER / NAVBAR */
.lolc-header-container {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 10000;
  border-bottom: 1px solid rgba(19, 48, 74, 0.1);
  margin: 0 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lolc-header-container.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 5px 0 !important;
}

.lolc-header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  opacity: 0.4;
  /* Much subtler tint */
  z-index: -1;
}

/* Kill WP/Astra Defaults */
#wpadminbar,
.site-header,
.site-footer,
.ast-footer-builder {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

* html body {
  margin-top: 0 !important;
}


.lolc-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lolc-header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.lolc-header-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.lolc-header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.lolc-logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.lolc-logo-container:hover {
  transform: scale(1.02);
}

.lolc-logo-container img {
  height: 55px;
  /* Slightly slimmer for pro look */
  width: auto;
  object-fit: contain;
  padding: 2px;
  border-radius: 4px;
  mix-blend-mode: multiply;
  /* Kills the white background on the logo */
}

.lolc-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
  align-items: center;
}

.lolc-nav-menu li a {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.3px;
  padding: 5px 0;
}

.lolc-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.lolc-nav-menu li a.active::after,
.lolc-nav-menu li a:hover::after {
  width: 100%;
}

/* MOBILE TOGGLE BUTTON */
.lolc-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  margin-left: 20px;
}

.lolc-mobile-toggle span {
  width: 100%;
  height: 3px;
  /* Slightly thicker */
  background-color: var(--text-main);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
  /* Ensure visibility */
}

.lolc-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.lolc-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.lolc-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.lolc-btn-donate,
.lolc-btn-primary {
  background-color: var(--text-main);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  /* Modern pill button */
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(19, 48, 74, 0.2);
}

.lolc-btn-donate:hover,
.lolc-btn-primary:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(180, 138, 48, 0.3);
}

.lolc-btn-outline {
  background-color: transparent;
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: 2px solid var(--text-main);
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lolc-btn-outline:hover {
  background-color: var(--text-main);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* HERO SECTION */
.lolc-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-image: url('../images/parallax_texture.jpeg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.lolc-hero::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* Ultra-light for premium visibility */
  z-index: 1;
}

.lolc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.lolc-hero h1 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  /* Maximum Pop */
}

.lolc-hero-subtitle {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  opacity: 1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 1);
}

/* INNER PAGES HERO */
.lolc-page-header {
  height: clamp(350px, 45vh, 500px);
  /* Taller, high-impact hero */
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-top: -100px;
  /* Overlap with glass nav */
  padding-top: 100px;
  /* Buffer for the nav bar */
  position: relative;
  overflow: hidden;
}



.lolc-page-header .lolc-section-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lolc-page-header h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  margin: 0;
  text-shadow: 0 10px 45px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
}

/* UNIFIED SECTION INNER (For content alignment) */
.lolc-section-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  width: 100% !important;
  display: block !important;
  float: none !important;
}

/* LAYOUT CONTAINER (Unified edge-to-edge sheet) */
.lolc-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto !important;
  padding: 0;
  border-radius: 40px;
  /* Rounder corners */
  overflow: hidden;
  /* Ensures internal content follows the curve */
  /* Let sections handle padding */
  background: transparent !important;
}

.lolc-inner-sheet {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 20px 0;
}

.lolc-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
}

.lolc-main-content h2 {
  font-size: 36px;
  margin-top: 50px;
  margin-bottom: 24px;
}

.lolc-main-content h2:first-child {
  margin-top: 0;
}

.lolc-main-content p {
  margin-bottom: 24px;
}

.lolc-main-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.lolc-main-content li {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* SIDEBAR WIDGETS */
.lolc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lolc-widget {
  background-color: transparent;
  border-top: 1px solid var(--text-main);
  padding-top: 25px;
}

.lolc-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* STATS SECTION */
.lolc-stats {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 100px 0;
  text-align: center;
  margin-top: 0;
}

.lolc-stats-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.lolc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lolc-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 10px;
}

.lolc-stat-label {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

/* FEATURES SECTION */
.lolc-features {
  width: 100%;
  background-color: rgba(243, 211, 139, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 120px 0;
  text-align: center;
}

.lolc-section-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.lolc-section-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  opacity: 0.8;
}

.lolc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  /* Force same height */
}

.lolc-card {
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 12px;
  border: 1px solid transparent;
}

.lolc-card:hover {
  transform: translateY(-8px);
  background-color: var(--white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.lolc-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}

.lolc-card h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0;
}

.lolc-card p {
  font-size: 17px;
  margin-bottom: 20px;
  padding: 0;
}

.lolc-card-link {
  display: inline-block;
  margin-top: auto;
  /* Push to bottom */
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
}

.lolc-card-link:hover {
  text-decoration: underline;
  color: var(--text-main);
}

/* QUOTE SECTION */
.lolc-quote {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 120px 0;
}

.lolc-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text-main);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  border-left: 2px solid var(--text-main);
  padding: 10px 0 10px 50px;
  /* Precise margin from the vertical wall */
  border-top: none;
  border-bottom: none;
  border-right: none;
}

/* CTA & EVENTS SECTION */
.lolc-events-preview {
  width: 100%;
  background-color: rgba(243, 211, 139, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 120px 0;
}

.lolc-events-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
}

.lolc-events-header .lolc-section-title {
  margin: 0;
}

.lolc-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.lolc-event-card {
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.lolc-event-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.lolc-event-date-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.lolc-event-month-num {
  text-align: left;
}

.lolc-event-month {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}

.lolc-event-day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1;
}

.lolc-event-title-small {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 20px;
}

.lolc-event-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}

.lolc-event-body {
  font-size: 16px;
  padding-left: 2px;
}

/* FORMS */
.lolc-form {
  margin-top: 40px;
}

.lolc-form-group {
  margin-bottom: 25px;
}

.lolc-form-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.lolc-form-input,
.lolc-form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  transition: border-color 0.2s;
}

.lolc-form-input:focus,
.lolc-form-textarea:focus {
  outline: none;
  border-color: var(--text-main);
}

.lolc-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER */
.lolc-footer {
  width: 100%;
  background-color: rgba(19, 48, 74, 0.9) !important;
  /* Semi-transparent navy */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--white);
  padding: 80px 0 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lolc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

.lolc-footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 25px;
}

.lolc-footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.lolc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lolc-footer-col ul li {
  margin-bottom: 12px;
}

.lolc-footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.lolc-footer-col ul li a:hover {
  color: var(--white);
}

.lolc-footer-bottom {
  background-color: rgba(0, 0, 0, 0.2) !important;
  /* Slightly darker stripe */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* BACK TO TOP BUTTON */
.ast-scroll-top,
#ast-scroll-top,
.ast-scroll-top:hover,
#ast-scroll-top:hover {
  background-color: var(--text-main) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.ast-scroll-top::before {
  color: var(--white) !important;
}

/* TABLE STYLING FRONTIER */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: white;
  border: 1px solid rgba(19, 48, 74, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

th {
  background: var(--text-main);
  color: white;
  font-family: 'Playfair Display', serif;
  padding: 15px 20px;
  text-align: left;
}

td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(19, 48, 74, 0.05);
  font-size: 17px;
}

tr:nth-child(even) {
  background-color: rgba(19, 48, 74, 0.02);
}

tr:hover {
  background-color: rgba(19, 48, 74, 0.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lolc-container {
    max-width: 92%;
  }
}

@media (max-width: 900px) {
  .lolc-header-container {
    padding: 10px 0 !important;
  }

  .lolc-header-inner {
    padding: 10px 20px;
  }

  .lolc-mobile-toggle {
    display: flex;
  }

  .lolc-header-center {
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    flex: 0 !important;
  }

  .lolc-nav-menu {
    position: fixed;
    top: 0;
    right: -105%;
    width: 75%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 20000 !important;
    padding: 60px 40px;
    display: flex !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .lolc-nav-menu.active {
    right: 0;
    pointer-events: all;
    opacity: 1;
    visibility: visible;
  }

  .lolc-nav-menu li a {
    font-size: 24px;
    color: var(--text-main);
  }

  .lolc-split {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

  .lolc-split.reverse {
    grid-template-columns: 1fr;
  }

  .lolc-split-img img {
    height: 300px;
  }

  .lolc-split-text {
    padding: 0;
  }

  .lolc-hero h1 {
    font-size: 44px;
  }

  .lolc-hero-subtitle {
    font-size: 20px;
  }

  .lolc-stats-inner {
    flex-direction: column;
    gap: 40px;
  }

  .lolc-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lolc-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7 {
    grid-column: span 1 !important;
    grid-row: auto !important;
    height: 200px !important;
  }
}

@media (max-width: 600px) {
  html {
    margin-top: 0 !important;
  }

  .lolc-container {
    max-width: 95% !important;
    border-radius: 20px;
  }

  .lolc-section {
    padding: 30px 15px;
  }

  .lolc-hero {
    height: 70vh;
    min-height: 450px;
  }

  .lolc-hero h1 {
    font-size: 36px;
  }

  .lolc-page-header {
    height: 300px;
  }

  .lolc-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lolc-cards,
  .lolc-events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lolc-split-img img {
    height: 250px;
  }
}

body.menu-open {
  overflow: hidden;
}
/* --- FINAL RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 1200px) {
  .lolc-container { max-width: 90% !important; }
}

@media (max-width: 900px) {
  /* Fluid Hero Typography */
  .lolc-hero h1 { font-size: clamp(32px, 8vw, 54px) !important; }
  .lolc-hero-subtitle { font-size: 20px !important; }

  /* Navigation Fix */
  .lolc-nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -105% !important;
    width: 85% !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: white !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
    z-index: 20000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  
  /* Show menu when active */
  .lolc-nav-menu.active {
    right: 0 !important;
  }

  .lolc-container { max-width: 95% !important; border-radius: 20px !important; }
  .lolc-stats-inner { flex-direction: column !important; gap: 40px !important; }
  .lolc-cards, .lolc-events-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .lolc-split { grid-template-columns: 1fr !important; gap: 30px !important; text-align: center !important; }
  .lolc-split-img img { height: 300px !important; }
  .lolc-footer-grid { grid-template-columns: 1fr !important; text-align: center !important; }
}

@media (max-width: 480px) {
  .lolc-hero h1 { font-size: 32px !important; }
  .lolc-btn-donate, .lolc-btn-primary { width: 100% !important; text-align: center !important; margin-bottom: 10px !important; }
  td, th { padding: 8px !important; font-size: 13px !important; }
}
