/* ============================================
   CAMPERS CORNER - Dedicated Styles
   ============================================ */

/* Force solid navbar on this page */
.cc-page .navbar { background: var(--navy); box-shadow: var(--shadow-md); }
.cc-page .navbar .nav-link { color: rgba(255,255,255,0.85); }
.cc-page .navbar .nav-link:hover,
.cc-page .navbar .nav-link.active { color: var(--teal); }
.cc-page .nav-logo-text { color: var(--white); }

/* ========== HERO BANNER ========== */
.cc-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.55);
}
.cc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.7), rgba(15,26,46,0.8));
}
.cc-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 0 24px;
}
.cc-hero-tag {
  display: inline-block;
  background: rgba(45,212,168,0.2);
  border: 1px solid rgba(45,212,168,0.4);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.cc-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cc-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== TAB NAV BAR ========== */
.cc-tabs-bar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.cc-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
}
.cc-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}
.cc-tab:hover {
  background: rgba(45,212,168,0.1);
  color: var(--teal-dark);
}
.cc-tab.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal-dark);
}

/* ========== SECTIONS ========== */
.cc-section { padding: 80px 0; }
.cc-section.cc-alt { background: var(--gray-100); }

/* ========== CARDS ========== */
.cc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cc-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 36px 24px;
  border-bottom: 2px solid var(--gray-100);
}
.cc-card-icon {
  font-size: 2.5rem;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45,212,168,0.15), rgba(45,212,168,0.05));
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.cc-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.cc-card-sub {
  color: var(--gray-600);
  font-size: 0.95rem;
}
.cc-card-body { padding: 32px 36px; }
.cc-card-footer {
  padding: 20px 36px;
  background: linear-gradient(135deg, rgba(249,199,79,0.12), rgba(249,199,79,0.05));
  border-top: 2px solid rgba(249,199,79,0.2);
}
.cc-card-note {
  font-size: 0.95rem;
  color: var(--gray-800);
}

/* ========== CHECKLIST ========== */
.cc-checklist {
  list-style: none;
  counter-reset: checklist;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cc-checklist li {
  counter-increment: checklist;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  position: relative;
}
.cc-checklist li:nth-child(odd) { background: rgba(45,212,168,0.04); }
.cc-checklist li:hover { background: rgba(45,212,168,0.1); }
.cc-checklist li::before {
  content: counter(checklist);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--teal);
  min-width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.cc-check-icon { display: none; }
.cc-checklist li strong {
  color: var(--navy);
  font-weight: 700;
}
.cc-tip {
  display: block;
  font-size: 0.85rem;
  color: var(--teal-dark);
  margin-top: 4px;
  font-style: italic;
}
.cc-note {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--sunset);
  font-weight: 700;
  margin-left: 4px;
}

/* ========== DRESS CODE RULES ========== */
.cc-rules-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cc-rule {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.cc-rule:nth-child(odd) { background: rgba(45,212,168,0.04); }
.cc-rule:hover { background: rgba(45,212,168,0.1); }
.cc-rule-icon {
  font-size: 1.8rem;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.cc-rule strong {
  color: var(--navy);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2px;
}
.cc-rule p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ========== CHECK-IN / CHECK-OUT SPLIT ========== */
.cc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cc-card-half .cc-card-header { border-bottom: 2px solid var(--gray-100); }
.cc-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.cc-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.6;
}
.cc-info-bullet {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== POLICIES GRID ========== */
.cc-policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cc-policy-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(26,39,68,0.06), rgba(26,39,68,0.02));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.cc-policy-emoji { font-size: 2rem; }
.cc-policy-highlight p { font-size: 1.05rem; color: var(--navy); }
.cc-policy-text { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ========== CTA BANNER ========== */
.cc-cta-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cc-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cc-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(15,26,46,0.9));
}
.cc-cta-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 0 24px;
}
.cc-cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.cc-cta-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .cc-hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .cc-hero { height: 320px; }
  .cc-hero-content h1 { font-size: 2.2rem; }
  .cc-hero-content p { font-size: 1.05rem; }
  .cc-split { grid-template-columns: 1fr; }
  .cc-policies-grid { grid-template-columns: 1fr; }
  .cc-card-header { padding: 24px 24px 18px; gap: 14px; }
  .cc-card-body { padding: 24px; }
  .cc-card-footer { padding: 16px 24px; }
  .cc-card-header h2 { font-size: 1.5rem; }
  .cc-card-icon { width: 50px; height: 50px; font-size: 2rem; }
  .cc-checklist li { padding: 12px 14px; }
  .cc-rule { padding: 16px 18px; }
  .cc-tabs { gap: 6px; }
  .cc-tab { padding: 8px 16px; font-size: 0.85rem; }
  .cc-cta-content h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .cc-hero { height: 280px; }
  .cc-hero-content h1 { font-size: 1.8rem; }
  .cc-tabs-bar { top: 60px; }
  .cc-section { padding: 60px 0; }
  .cc-card-header { flex-direction: column; text-align: center; }
}
