/* THE DIGITAL CAMP PLATFORM (TDCP) 
   Master Stylesheet 
*/

:root {
  --teal: #0C6D81;         /* Primary Brand Color */
  --teal-light: #158499;   /* For Gradients */
  --gold: #D7A92F;         /* Action Color */
  --white: #FFFFFF;
  --light-gray: #f8fafc;   /* For Section Backgrounds */
  --text-dark: #2d3436;
  --text-muted: #636e72;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar-brand img {
    height: 60px; /* Adjust this number (60px to 80px) until it looks right to you */
    width: auto;
    display: block;
}
.navbar {
  background: var(--white);
  border-bottom: 4px solid var(--teal);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
  color: var(--teal) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.5rem !important;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  color: white !important;
  font-weight: 700;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #b88e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(215, 169, 47, 0.4);
}

/* Hero Section */
.hero-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
}

/* Info-Heavy Counters (Stats Bar) */
.stats-bar {
  background: var(--light-gray);
  padding: 50px 0;
  border-bottom: 1px solid #e1e8ed;
}

.stat-item h2 {
  color: var(--teal);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Checklist Styling */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.check-list i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.6rem;
}

/* Feature Cards */
.card-tdcp {
  border: none;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.card-tdcp:hover {
  transform: translateY(-10px);
}

.text-teal {
  color: var(--teal) !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .hero-teal {
    text-align: center;
    padding: 60px 0;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}
.footer-tdcp {
    background-color: var(--teal);
    color: white;
}

.footer-tdcp h6 {
    letter-spacing: 1px;
}

.footer-tdcp a:hover {
    opacity: 1 !important;
    color: var(--gold) !important;
    transition: 0.3s ease;
}

.text-gold {
    color: var(--gold) !important;
}

/* Ensure the footer stays at the bottom on short pages */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, section:first-of-type {
    flex: 1;
}