/* Programs section layout styles */
.programs-hero {
    background-color: #0a5566;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/tennis-court-pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.programs-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.programs-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.programs-hero .btn {
    position: relative;
    z-index: 1;
    background-color: #c2e59c;
    color: #0a5566;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.programs-hero .btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Specific styling for first "Register Now" button on program pages */
.programs-hero .btn:first-of-type {
    color: #17a2b8 !important; /* Blue teal color */
}

.programs-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a5566;
    color: white;
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-content h3 {
    color: #0a5566;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .programs-hero h1 {
        font-size: 2.8rem;
    }
    
    .feature-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .programs-hero {
        padding: 60px 20px;
    }
    
    .programs-hero h1 {
        font-size: 2.2rem;
    }
    
    .programs-hero p {
        font-size: 1rem;
    }
    
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
}

.dynamic-cta .cta-content p {
  color: #18404a !important;
  opacity: 0.95 !important;
}
.dynamic-cta .btn-outline-light {
  color: #18404a !important;
  border: 2px solid #18404a !important;
  background: #fff !important;
}
.dynamic-cta .btn-outline-light:hover {
  background: #18404a !important;
  color: #fff !important;
}

/* Removed conflicting program-image styles - now handled by programs-overview.css */
