/* Base Styles */
:root {
/* Primary colors - Inspired by Yoruba royalty (purple/gold) */
    --primary-color: #5d3a9b;  /* Deep royal purple */
    --primary-light: #ccb8e5;  /* Lighter royal purple */
    --primary-dark: #3c1f6b;   /* Darker purple for contrast */
    
    /* Secondary colors - Gold tones representing wealth and prosperity */
    --secondary-color: #ffc107;  /* Vibrant gold */
    --secondary-light: #ffd54f;  /* Lighter gold */
    --secondary-dark: #ffa000;   /* Darker gold */
    
    /* Accent colors - Earth tones from Yoruba textiles */
    --accent-color: #8d6e63;    /* Earthy brown (like adire fabric) */
    --accent-light: #a1887f;    /* Lighter earth tone */
    --accent-dark: #5d4037;     /* Darker earth tone */
    
    /* Status colors */
    --success-color: #388e3c;   /* Deep green (like lush vegetation) */
    --warning-color: #ff8f00;   /* Amber warning color */
    --error-color: #d32f2f;     /* Rich red */
    
    /* Text colors */
    --text-color: #2d2d2d;      /* Almost black for body text */
    --text-light: #555;         /* Lighter text */
    --text-lighter: #777;       /* Even lighter text */
    --text-on-dark: #ffffff;    /* White text for dark backgrounds */
    
    /* Background colors */
    --bg-light: #f8f5f2;       /* Very light warm gray */
    --bg-lighter: #fefaf6;     /* Off-white with warm tint */
    --white: #ffffff;          /* Pure white */
    --black: #000000;          /* Pure black */
    
    /* UI Elements */
    --border-radius: 8px;       /* Maintained for consistency */
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Additional Yoruba-inspired colors */
    --yoruba-indigo: #264348;   /* Deep indigo from traditional dyes */
    --yoruba-red: #b71c1c;      /* Bold red from Yoruba textiles */
    --yoruba-yellow: #fdd835;   /* Sunny yellow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-lighter);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--secondary-light);
}

.main-header {
    background-color: var(--white);
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 25px;
    position: relative;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.auth-links {
    display: flex;
    align-items: center;
}

.auth-links .btn {
    margin-left: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    font-weight: 600;
}

.mobile-menu .btn {
    display: block;
    margin: 15px 0;
    text-align: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(237, 235, 239, 0.136), rgba(242, 241, 243, 0.273)), url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    color: var(--bg-lighter);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bg-lighter);
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(30, 25, 25, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-lighter);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ======================
   Cultural Resources Page
   ====================== */
.cultural-resources {
    padding: 80px 0;
    background-color: var(--bg-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.resource-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-icon {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 2rem;
}

.resource-card h2 {
    padding: 15px 20px;
    background: var(--primary-light);
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.resource-content {
    padding: 20px;
}

.story-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.story-list li:last-child {
    border-bottom: none;
}

.story-list h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.audio-item {
    margin-bottom: 20px;
}

.audio-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.event-list {
    margin-top: 15px;
}

.event-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--bg-light);
}

.event-date {
    width: 60px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.event-date .month {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.event-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.event-location i {
    margin-right: 5px;
}

.proverb-of-day {
    text-align: center;
    padding: 20px 0;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 20px 0;
    padding: 0 20px;
    position: relative;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
}

blockquote::before {
    top: -20px;
    left: 0;
}

blockquote::after {
    bottom: -40px;
    right: 0;
}

blockquote footer {
    font-style: normal;
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--text-light);
}

.translation {
    font-weight: bold;
    margin: 15px 0;
}

.meaning {
    font-size: 0.9rem;
    color: var(--text-light);
}

.resource-footer {
    margin-top: 20px;
    text-align: center;
}

.cultural-cta {
    text-align: center;
    padding: 40px;
    background: var(--primary-light);
    color: white;
    border-radius: var(--border-radius);
}

.cultural-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.cultural-cta p {
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.program-card.featured {
    border: 2px solid var(--secondary-color);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.program-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.program-header h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.program-body {
    padding: 20px;
}

.program-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.program-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.program-body i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 0 15px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(74, 20, 140, 0.9), rgba(74, 20, 140, 0.9)), url('../images/kids-learning.jpeg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius);
    border: none;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.copyright {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Form Styles */
/* Registration Form Styles */
.registration-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 25px;
}

.form-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-light);
    color: var(--primary-color);
}

.form-section h2 i {
    margin-right: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Radio and Checkbox Styles */
.radio-options,
.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-container,
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
}

.radio-container input,
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark,
.checkbox-checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #ddd;
    transition: var(--transition);
}

.radio-checkmark {
    border-radius: 50%;
}

.checkbox-checkmark {
    border-radius: 4px;
}

.radio-container:hover input ~ .radio-checkmark,
.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--primary-light);
}

.radio-container input:checked ~ .radio-checkmark,
.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.radio-checkmark:after,
.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .radio-checkmark:after,
.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.radio-checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.checkbox-checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-label,
.checkbox-label {
    margin-left: 10px;
}

/* Terms Checkbox */
.terms-group {
    margin-top: 30px;
}

.terms-group .checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.terms-group .checkbox-label a:hover {
    color: var(--primary-light);
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.secure-notice {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.secure-notice i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Payment Section */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.order-summary, .payment-methods {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.summary-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.summary-item h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.summary-total {
    margin-top: 30px;
}

.summary-total h3 {
    font-size: 1.2rem;
    color: var(--text-color);
}

.amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-option {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option.active {
    border-color: var(--primary-color);
    background-color: rgba(74, 20, 140, 0.05);
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-header img {
    height: 30px;
    margin-right: 15px;
}

.option-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.payment-security {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.payment-security img {
    margin-top: 10px;
    height: 40px;
}

/* Dashboard Styles */
.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 1.8rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.class-list, .assignment-list, .material-list, .submission-list, .registration-list, .payment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.class-item, .assignment-item, .material-item, .submission-item, .registration-item, .payment-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--bg-lighter);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.class-item:hover, .assignment-item:hover, .material-item:hover, .submission-item:hover, .registration-item:hover, .payment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.class-date, .assignment-due, .payment-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    margin-right: 15px;
}

.class-day, .assignment-due {
    font-weight: 600;
    color: var(--primary-color);
}

.class-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.class-details, .assignment-details, .material-details, .submission-details, .registration-details, .payment-details {
    flex-grow: 1;
}

.class-details h3, .assignment-details h3, .material-details h3, .submission-details h3, .registration-details h3, .payment-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.class-details p, .assignment-details p, .material-details p, .submission-details p, .registration-details p, .payment-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.class-actions, .assignment-actions, .material-actions, .submission-actions, .registration-actions, .payment-actions {
    margin-left: 15px;
}

.live-badge {
    background-color: var(--error-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

.live-badge i {
    font-size: 0.6rem;
    margin-right: 3px;
}

.material-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.empty-state {
    text-align: center;
    padding: 30px 0;
}

.empty-state p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}
/* Auth Pages */
.auth-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.auth-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.auth-header {
    padding: 30px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.auth-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.auth-form {
    padding: 30px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--text-light);
}

.forgot-password:hover {
    color: var(--primary-color);
}

.auth-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--bg-light);
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer p {
    margin-bottom: 10px;
}

/* Admin Tables */
.data-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.data-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.data-table tr:hover {
    background-color: var(--bg-lighter);
}

.data-table .actions {
    white-space: nowrap;
}

.data-table .btn-small {
    padding: 5px 8px;
    min-width: 30px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background-color: var(--success-color);
    color: white;
}

.status-badge.pending {
    background-color: var(--warning-color);
    color: white;
}

.status-badge.graded {
    background-color: var(--primary-light);
    color: white;
}

/* Tabs */
.tabs {
    margin-top: 30px;
}

.tab-header {
    display: flex;
    border-bottom: 2px solid var(--bg-light);
}

.tab-link {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.tab-link.active {
    color: var(--primary-color);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

/* Payment Success */
.payment-success {
    padding: 40px 0;
}

.success-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    color: #4CAF50;
    font-size: 60px;
    margin-bottom: 20px;
}

.payment-details {
    text-align: left;
    margin: 30px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-weight: bold;
    width: 150px;
}

.detail-value {
    flex: 1;
}

.highlight {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
}

.next-steps {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 8px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.support-note {
    font-size: 0.9em;
    color: #666;
}

/* ======================
   Registration Management 
   ====================== */
.registration-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 20px;
}

.registration-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.registration-meta-item {
    flex: 1;
    padding: 10px;
    background: var(--bg-lighter);
    border-radius: var(--border-radius);
}

.registration-meta-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.registration-meta-value {
    font-weight: 600;
}

/* Payment Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background-color: var(--warning-color);
    color: white;
}

.status-badge.completed {
    background-color: var(--success-color);
    color: white;
}

.status-badge.failed {
    background-color: var(--error-color);
    color: white;
}

/* ======================
   Payment Failed Page
   ====================== */
.payment-message {
    padding: 80px 0;
}

.message-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
}

.message-card.error {
    border-top: 4px solid var(--error-color);
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.message-card.error .message-icon {
    color: var(--error-color);
}

.message-card h1 {
    margin-bottom: 15px;
}

.suggestions {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: var(--border-radius);
}

.suggestions ul {
    margin-top: 10px;
    padding-left: 20px;
}

.suggestions li {
    margin-bottom: 8px;
}

/* ======================
   Filter Forms
   ====================== */
.filter-form {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* ======================
   Pagination
   ====================== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid var(--bg-light);
    border-radius: 4px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination a.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: bold;
}
/* ======================
   Registration View Page
   ====================== */
.registration-details {
    margin-top: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-light);
}

.detail-label {
    width: 150px;
    font-weight: 600;
    color: var(--text-light);
}

.detail-value {
    flex: 1;
}

.learning-goals {
    background: var(--bg-lighter);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 10px;
}

.payment-history {
    margin-top: 30px;
}

/* ======================
   CSV Export Button
   ====================== */
.export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.export-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}
//additional for FAQ & Contact//
/* ======================
   About Page Styles
   ====================== */
.about-section {
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content h2 {
    color: var(--primary-color);
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
}

.about-content h2 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.about-content p {
     margin-right: 15px;
     margin-left: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.milestones {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.milestone {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: var(--border-radius);
}

.milestone .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.milestone .label {
    font-size: 1rem;
    color: var(--text-light);
}

.team-section {
    margin: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 5px solid var(--primary-light);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member .role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(rgba(74, 20, 140, 0.9), rgba(74, 20, 140, 0.9)), 
                url('/assets/images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    border-radius: var(--border-radius);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

/* ======================
   FAQ Page Styles
   ====================== */
/* General Responsive Styles */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* FAQ Section Responsive */
.faq-section {
    padding: 30px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.search-faq {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}

.search-faq input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-faq button {
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 8px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* FAQ Accordion */
.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

/* ======================
   Contact Page Styles
   ====================== */
.contact-section {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    margin: 5px 0;
    color: var(--text-color);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--bg-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
/* ======================
   Summer Program Styles
   ====================== */
.summer-registration {
    padding: 60px 0;
    background-color: #f9f5ff;
}

.summer-header {
    text-align: center;
    margin-bottom: 40px;
}

.summer-header h1 {
    color: #4a148c;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.summer-header .lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.program-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.highlight-item i {
    color: #ff6f00;
    font-size: 1.2rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.detail-card {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-card h3 {
    color: #4a148c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h3 i {
    color: #ff6f00;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.detail-card ul li::before {
    content: "✓";
    color: #4a148c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.schedule-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.schedule-option {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.schedule-option h4 {
    color: #4a148c;
    margin-bottom: 5px;
}

.schedule-option p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.testimonial {
    background: white;
    color: #4a148c;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
}

.testimonial::before {
    content: """;
    font-family: serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial blockquote {
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.testimonial-author {
    text-align: right;
    font-size: 0.9rem;
}

.registration-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.form-header h1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-header h1 {
    color: #4a148c;
    margin: 0;
    justify-content: center;
}

.price-badge {
    background: #ff6f00;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
}

.price-badge .price {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.price-badge .text {
    font-size: 0.8rem;
    display: block;
}
/* ======================
   Legal Document Styles
   ====================== */
.content-section {
    padding: 60px 0;
    background-color: var(--bg-lighter);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.document-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.document-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.document-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

.document-section {
    margin-bottom: 30px;
}

.document-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.document-section h3 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.document-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.document-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.document-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.document-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}