/* ==========================================================================
   Level Up Camp 2026 - Events Hub by OSL
   Native In-Page Section Styles (100% Mobile Responsive & Brand Compliant)
   ========================================================================== */

/* Seamless Section Container */
.luc-section {
  position: relative;
  background-color: var(--color-cream, #f7f3ea);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid var(--color-taupe, #dcd3c0);
  border-bottom: 1px solid var(--color-taupe, #dcd3c0);
  font-family: var(--font-inter, "Inter", sans-serif);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .luc-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.luc-container {
  max-width: 80rem; /* max-w-7xl */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .luc-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Section Header */
.luc-header {
  margin-bottom: 2.25rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-header {
    margin-bottom: 3.5rem;
  }
}

.luc-eyebrow {
  display: inline-block;
  color: var(--color-gold, #a9863d);
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .luc-eyebrow {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }
}

.luc-title {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-charcoal, #241f1a);
  margin-bottom: 0.5rem;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .luc-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .luc-title {
    font-size: 3rem;
  }
}

.luc-tagline {
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.9375rem;
  color: rgba(36, 31, 26, 0.75);
  font-style: italic;
  max-width: 48rem;
  line-height: 1.55;
  margin: 0;
  word-break: break-word;
}

@media (min-width: 768px) {
  .luc-tagline {
    font-size: 1.0625rem;
    line-height: 1.6;
  }
}

/* Main Grid Layout */
.luc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.luc-grid > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .luc-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3.5rem;
  }
}

/* Camp 1 & Camp 2 Schedule Cards */
.luc-camps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-camps-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}

.luc-camp-card {
  background: #ffffff;
  border: 1px solid var(--color-taupe, #dcd3c0);
  padding: 1.25rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .luc-camp-card {
    padding: 1.5rem;
  }
}

.luc-camp-card:hover {
  border-color: var(--color-gold, #a9863d);
}

.luc-camp-badge {
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold, #a9863d);
  margin-bottom: 0.35rem;
}

.luc-camp-heading {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest, #1e3a2b);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .luc-camp-heading {
    font-size: 1.35rem;
  }
}

.luc-camp-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal, #241f1a);
  background: var(--color-cream, #f7f3ea);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  max-width: 100%;
  flex-wrap: wrap;
  word-break: break-word;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-camp-dates {
    font-size: 0.8125rem;
    padding: 0.35rem 0.65rem;
  }
}

.luc-camp-dates svg {
  flex-shrink: 0;
}

.luc-camp-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(36, 31, 26, 0.8);
  margin: 0;
}

@media (min-width: 768px) {
  .luc-camp-text {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

/* Philosophy Quote Box */
.luc-intro-box {
  background: #ffffff;
  border-left: 3px solid var(--color-forest, #1e3a2b);
  border-top: 1px solid var(--color-taupe, #dcd3c0);
  border-right: 1px solid var(--color-taupe, #dcd3c0);
  border-bottom: 1px solid var(--color-taupe, #dcd3c0);
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(36, 31, 26, 0.85);
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .luc-intro-box {
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.65;
  }
}

.luc-intro-box p {
  margin: 0;
}

.luc-intro-box p + p {
  margin-top: 0.75rem;
}

/* Interactive Tabs */
.luc-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-taupe, #dcd3c0);
  margin-bottom: 1.25rem;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  box-sizing: border-box;
}

.luc-tabs-nav::-webkit-scrollbar {
  display: none;
}

.luc-tab-button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(36, 31, 26, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .luc-tab-button {
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
    letter-spacing: 0.08em;
  }
}

.luc-tab-button:hover {
  color: var(--color-forest, #1e3a2b);
}

.luc-tab-button.active {
  color: var(--color-forest, #1e3a2b);
  border-bottom-color: var(--color-terracotta, #c05b32);
  font-weight: 700;
}

.luc-tab-content {
  background: #ffffff;
  border: 1px solid var(--color-taupe, #dcd3c0);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-tab-content {
    padding: 1.75rem;
    margin-bottom: 2rem;
  }
}

.luc-tab-panel {
  display: none;
  width: 100%;
  box-sizing: border-box;
}

.luc-tab-panel.active {
  display: block;
}

/* 4 Levels Grid */
.luc-levels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .luc-levels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.luc-level-item {
  border: 1px solid rgba(220, 211, 192, 0.6);
  padding: 0.875rem 1rem;
  background: var(--color-cream, #f7f3ea);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-level-item {
    padding: 1rem 1.25rem;
  }
}

.luc-level-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-gold, #a9863d);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.luc-level-name {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-forest, #1e3a2b);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .luc-level-name {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }
}

.luc-level-desc {
  font-size: 0.8125rem;
  color: rgba(36, 31, 26, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Inclusions List */
.luc-inclusions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .luc-inclusions-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.luc-inclusions-list li {
  font-size: 0.8125rem;
  color: rgba(36, 31, 26, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.luc-check {
  color: var(--color-forest, #1e3a2b);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Safety List */
.luc-safety-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .luc-safety-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.luc-safety-item {
  background: var(--color-cream, #f7f3ea);
  border-left: 3px solid var(--color-forest, #1e3a2b);
  padding: 0.875rem 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-safety-item {
    padding: 1rem 1.25rem;
  }
}

.luc-safety-item h5 {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest, #1e3a2b);
  margin: 0 0 0.25rem 0;
}

@media (min-width: 768px) {
  .luc-safety-item h5 {
    font-size: 1rem;
  }
}

.luc-safety-item p {
  font-size: 0.8125rem;
  color: rgba(36, 31, 26, 0.75);
  line-height: 1.45;
  margin: 0;
}

/* Pricing Bar & Booking CTAs */
.luc-pricing-bar {
  background: var(--color-forest, #1e3a2b);
  color: var(--color-cream, #f7f3ea);
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-pricing-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    gap: 1rem;
  }
}

.luc-pricing-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold, #a9863d);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .luc-pricing-label {
    font-size: 0.75rem;
  }
}

.luc-pricing-amount {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

@media (min-width: 640px) {
  .luc-pricing-amount {
    font-size: 2rem;
  }
}

.luc-pricing-amount span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(247, 243, 234, 0.8);
}

@media (min-width: 640px) {
  .luc-pricing-amount span {
    font-size: 0.875rem;
  }
}

.luc-pricing-details {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.85);
  line-height: 1.45;
  text-align: left;
  max-width: 100%;
}

@media (min-width: 640px) {
  .luc-pricing-details {
    font-size: 0.8125rem;
    max-width: 24rem;
    text-align: right;
  }
}

.luc-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-actions-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    width: auto;
  }
}

.luc-btn-primary,
.luc-btn-whatsapp,
.luc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-inter, "Inter", sans-serif);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 640px) {
  .luc-btn-primary,
  .luc-btn-whatsapp,
  .luc-btn-secondary {
    width: auto;
    padding: 1rem 1.75rem;
    letter-spacing: 0.12em;
  }
}

.luc-btn-primary {
  background-color: var(--color-forest, #1e3a2b);
  color: var(--color-cream, #f7f3ea);
}

.luc-btn-primary:hover {
  background-color: var(--color-gold, #a9863d);
  color: var(--color-charcoal, #241f1a);
}

.luc-btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.luc-btn-whatsapp:hover {
  background-color: #1eb853;
  color: #ffffff;
}

.luc-btn-secondary {
  background-color: transparent;
  color: var(--color-forest, #1e3a2b);
  border: 1px solid var(--color-forest, #1e3a2b);
}

.luc-btn-secondary:hover {
  background-color: var(--color-forest, #1e3a2b);
  color: var(--color-cream, #f7f3ea);
}

/* Right Column: Visual Artwork Cards */
.luc-poster-frame {
  background: #ffffff;
  border: 1px solid var(--color-taupe, #dcd3c0);
  padding: 0.75rem;
  box-shadow: 0 4px 20px -2px rgba(36, 31, 26, 0.06);
  margin-bottom: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-poster-frame {
    padding: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.luc-poster-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.luc-poster-frame img:hover {
  opacity: 0.96;
}

.luc-poster-caption {
  padding: 0.65rem 0.25rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(36, 31, 26, 0.7);
  box-sizing: border-box;
}

.luc-poster-caption button {
  background: transparent;
  border: none;
  color: var(--color-forest, #1e3a2b);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.75rem;
}

.luc-factsheet-card {
  background: #ffffff;
  border: 1px solid var(--color-taupe, #dcd3c0);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luc-factsheet-card {
    padding: 1.25rem;
    gap: 1rem;
  }
}

.luc-factsheet-thumb {
  width: 56px;
  height: 76px;
  border: 1px solid var(--color-taupe, #dcd3c0);
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 768px) {
  .luc-factsheet-thumb {
    width: 64px;
    height: 88px;
  }
}

.luc-factsheet-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luc-factsheet-info {
  min-width: 0;
  flex: 1;
}

.luc-factsheet-info h6 {
  font-family: var(--font-fraunces, "Fraunces", serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest, #1e3a2b);
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .luc-factsheet-info h6 {
    font-size: 1.05rem;
  }
}

.luc-factsheet-info p {
  font-size: 0.75rem;
  color: rgba(36, 31, 26, 0.7);
  margin: 0 0 0.35rem 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .luc-factsheet-info p {
    font-size: 0.8125rem;
    margin: 0 0 0.5rem 0;
  }
}

.luc-factsheet-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-terracotta, #c05b32);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Lightbox Image Preview (Only on Click) */
#luc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: rgba(20, 25, 22, 0.88);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
  box-sizing: border-box;
}

#luc-lightbox.active {
  display: flex;
}

#luc-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  background: #fff;
}

/* Google Preferred Source Button */
.luc-google-pref-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--color-taupe, #dcd3c0);
  border-radius: 4px;
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal, #241f1a);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luc-google-pref-btn {
    width: auto;
    padding: 1rem 1.5rem;
  }
}

.luc-google-pref-btn:hover {
  border-color: #4285f4;
  color: #1a73e8;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.18);
  transform: translateY(-1px);
}

/* FAQ Accordion Architecture (GEO / AEO) */
.luc-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.luc-faq-item {
  border: 1px solid var(--color-taupe, #dcd3c0);
  background: var(--color-cream, #f7f3ea);
  transition: all 0.2s ease;
  overflow: hidden;
}

.luc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-forest, #1e3a2b);
  cursor: pointer;
  text-align: left;
  gap: 0.75rem;
}

.luc-faq-arrow {
  font-size: 0.6875rem;
  color: var(--color-gold, #a9863d);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.luc-faq-item.open .luc-faq-arrow {
  transform: rotate(180deg);
}

.luc-faq-a {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-family: var(--font-inter, "Inter", sans-serif);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(36, 31, 26, 0.8);
  border-top: 1px solid rgba(220, 211, 192, 0.5);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.luc-faq-item.open .luc-faq-a {
  display: block;
}

.luc-faq-a p {
  margin: 0;
}

