/* Updated Global Style */

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', 'Roboto Condensed', Arial, sans-serif;
}

.navbar-brand {
    font-family: 'Cookie', cursive;
}

.hero-section h1,
.cta-section h2,
.path-card h4,
h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

p, li, a, button, .lead {
    font-family: 'Roboto Condensed', Arial, sans-serif;
}


/* Primary Colors */
.text-primary-custom {
    color: #008790;
}

.bg-primary-custom {
    background-color: #008790;
}

.text-accent-gold {
    color: #fbb216;
}

.bg-accent-gold {
    background-color: #fbb216;
}

/* Button Styling */
.btn-warning {
    background-color: #fbb216;
    border: none;
    color: white;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e0a806;
    color: white;
}

/* Navbar */
.navbar-nav .nav-link {
    color: #008790 !important;
    font-weight: 500 !important;
    font-size: 1.2rem !important;  /* Try 1.3rem if still too small */
}

.navbar-nav .nav-link:hover {
    color: #015760;
}


/* Path Card Styling */
.path-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
}

.tcta-section {
    background-color: #008790;
}

.tcta-text-white {
    color: white;
}

.tcta-text-warning {
    color: #fbb216;
    font-weight: bold;
}

/* Locked Video Cards */
.locked-video-card {
    filter: grayscale(100%) brightness(85%);
    position: relative;
    pointer-events: none;
    opacity: 0.85;
}

.locked-video-card .card-body {
    opacity: 0.7;
}

.locked-video-card .btn {
    pointer-events: auto;
    opacity: 1;
}


/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    font-size: 14px;
}
