/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #c6aa76;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: #000000;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #c6aa76;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c6aa76;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background-color: #c6aa76;
    color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b89a66;
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.btn-secondary {
    background-color: transparent;
    color: #c6aa76;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #c6aa76;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c6aa76;
    color: #000000;
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.btn-secondary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-secondary.disabled:hover {
    background-color: transparent;
    color: #c6aa76;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    color: #c6aa76;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #cccccc;
}

/* Page Headers */
.page-header {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #333;
    position: relative;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-logo {
    position: absolute;
    top: 16px;
    right: 20px;
}

.page-header-logo img {
    width: 64px;
    height: 64px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
    .page-header-logo img {
        width: 48px;
        height: 48px;
    }
}

/* Industries Section */
.industries {
    padding: 80px 0;
}

.industries h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.industry-card h3 {
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: #111;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.core-values h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Founder Section */
.founder {
    padding: 80px 0;
    background-color: #111;
    text-align: center;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* About Page Specific Styles */
.section-subtitle {
    text-align: center;
    color: #c6aa76;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c6aa76, transparent);
    border-radius: 1px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-card, .vision-card {
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.mission-card::before {
    background: linear-gradient(90deg, #c6aa76, #b89a66);
}

.vision-card::before {
    background: linear-gradient(90deg, #b89a66, #c6aa76);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    border-color: #c6aa76;
}

.founder-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #111;
    border-top: 1px solid #333;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

.about-cta p {
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ventures */
.ventures {
    padding: 80px 0;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.venture-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.venture-card:hover {
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.venture-card h2 {
    margin-bottom: 1rem;
}

.venture-card p {
    margin-bottom: 1.5rem;
}

.venture-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #111;
}

/* Faith Page */
.faith-statement {
    padding: 80px 0;
}

.faith-content {
    max-width: 800px;
    margin: 0 auto;
}

.faith-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bible-verse {
    padding: 80px 0;
    background-color: #111;
    text-align: center;
}

.verse-content blockquote {
    font-size: 1.5rem;
    color: #c6aa76;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.verse-content cite {
    color: #cccccc;
    font-size: 1rem;
}

.faith-principles {
    padding: 80px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-2px);
    border-color: #c6aa76;
}

/* Careers Page */
.company-culture,
.christian-values,
.job-openings {
    padding: 80px 0;
}

.culture-content p,
.values-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values-content ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.values-content li {
    margin-bottom: 0.5rem;
}

.check-back-notice {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    margin-top: 2rem;
}

.career-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #111;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #c6aa76;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c6aa76;
}

/* Custom form validation styling */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #c6aa76;
    box-shadow: 0 0 0 2px rgba(198, 170, 118, 0.2);
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #4a4a4a;
}

/* Custom validation messages */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #c6aa76;
    background-color: rgba(198, 170, 118, 0.05);
}

/* Hide default browser validation messages */
.form-group input:invalid:not(:placeholder-shown)::-webkit-validation-bubble-message,
.form-group textarea:invalid:not(:placeholder-shown)::-webkit-validation-bubble-message {
    display: none;
}

/* Custom validation message styling */
.form-group {
    position: relative;
}

.form-group .validation-message {
    display: none;
    color: #c6aa76;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.form-group input:invalid:not(:placeholder-shown) + .validation-message,
.form-group textarea:invalid:not(:placeholder-shown) + .validation-message {
    display: block;
}

/* Form submission messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}



/* Error state styling */
.form-group input.error,
.form-group textarea.error {
    border-color: #c6aa76;
    background-color: rgba(198, 170, 118, 0.05);
    box-shadow: 0 0 0 2px rgba(198, 170, 118, 0.2);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #c6aa76;
    box-shadow: 0 0 0 3px rgba(198, 170, 118, 0.3);
}

/* Success message styling */
.success-message {
    background: linear-gradient(135deg, rgba(198, 170, 118, 0.1) 0%, rgba(198, 170, 118, 0.05) 100%);
    border: 1px solid #c6aa76;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.success-content h3 {
    color: #c6aa76;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.success-content p {
    color: #ffffff;
    margin: 0.5rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error message styling */
.error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.error-content h3 {
    color: #dc3545;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.error-content p {
    color: #ffffff;
    margin: 0.5rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

.error-content strong {
    color: #ff6b6b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #cccccc;
}

/* Footer */
footer {
    background-color: #111;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #c6aa76;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid transparent;
}

.social-link:hover {
    color: #ffffff;
    background-color: rgba(198, 170, 118, 0.1);
    border-color: #c6aa76;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #c6aa76;
}

.footer-bottom p {
    color: #c6aa76;
}

/* Memorial banner mobile tweaks */
@media (max-width: 768px) {
    .memorial-banner .container {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 8px;
        padding: 0 16px;
    }
    .memorial-banner .banner-text {
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .memorial-banner .banner-actions a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid #333;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

    .page-header {
        padding: 40px 0;
    }

    .industries,
    .ventures,
    .faith-statement,
    .bible-verse,
    .company-culture,
    .christian-values,
    .job-openings,
    .contact-content {
        padding: 60px 0;
    }

    .industry-grid,
    .venture-grid,
    .values-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .value-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .memorial-banner {
        padding: 10px 0;
    }
    .memorial-banner .banner-text {
        font-size: 0.9rem;
    }
    .memorial-banner .banner-actions a {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 40px 0;
    }

    .industry-card,
    .venture-card,
    .value-card,
    .principle-card,
    .content-card {
        padding: 1.5rem;
    }
}

/* Sports Buddies Microsite Styles */
.sports-buddies-hero {
    background: #880101;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.sports-buddies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sports-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23sports-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .hero-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.buddy-match-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.buddy-match-section h2 {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.match-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #c6aa76;
    box-shadow: 0 10px 30px rgba(198, 170, 118, 0.2), 0 0 20px rgba(198, 170, 118, 0.3);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: #880101;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-card p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.features-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #c6aa76;
    box-shadow: 0 10px 30px rgba(198, 170, 118, 0.2), 0 0 20px rgba(198, 170, 118, 0.3);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.trust-banner {
    background-color: #880101;
    padding: 4rem 0;
    color: #ffffff;
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trust-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.testimonials-section h2 {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #c6aa76;
    box-shadow: 0 10px 30px rgba(198, 170, 118, 0.2), 0 0 20px rgba(198, 170, 118, 0.3);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.testimonial-card p {
    color: #333333;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info strong {
    color: #000000;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.sport-badge {
    background-color: #880101;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.join-section {
    padding: 4rem 0;
    background-color: #440001;
}

.join-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.join-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: #880101;
    border-radius: 8px;
    border: 1px solid #aa0202;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #880101, #aa0202);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.step p {
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    background-color: #880101;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #aa0202;
}

.join-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.join-cta p {
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    background-color: #660001;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #880101;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #aa0202;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #c6aa76;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 170, 118, 0.2), 0 0 20px rgba(198, 170, 118, 0.3);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.final-cta {
    background-color: #880101;
    padding: 5rem 0;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-subtext {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.waitlist-form .form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.waitlist-form button {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #880101;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    border-color: #c6aa76;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-fallback {
    margin-top: 1rem;
    text-align: center;
}

.contact-fallback p {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
}

.contact-fallback a {
    color: #c6aa76;
    text-decoration: none;
    font-weight: 500;
}

.contact-fallback a:hover {
    text-decoration: underline;
    transform: translateY(-2px);
    border-color: #c6aa76;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}



/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Staggered animations for grids */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced hover animations */
.venture-card:hover,
.industry-card:hover,
.principle-card:hover,
.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth page transitions */
.page-header,
.hero,
.faith-statement,
.bible-verse,
.venture-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header.animate-fade-in-up,
.hero.animate-fade-in-up,
.faith-statement.animate-fade-in-up,
.bible-verse.animate-fade-in-up,
.venture-cta.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Button hover enhancements */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.dynasty-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dynasty-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    min-width: 180px;
}

/* Responsive adjustments for dynasty page */
@media (max-width: 768px) {
    .foundation-content h2,
    .approach-content h2,
    .dynasty-principles h2,
    .dynasty-future h2,
    .dynasty-cta h2 {
        font-size: 2rem;
    }
    
    .foundation-content p,
    .approach-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        min-width: 200px;
    }
}

/* Enhanced Footer for Sports Buddies */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #c6aa76;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #c6aa76;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #c6aa76;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #c6aa76;
}

/* Responsive Design for Sports Buddies */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .match-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form .form-group {
        flex-direction: column;
    }
    
    .waitlist-form input {
        min-width: auto;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .program-card {
        padding: 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Admin Access Shield Icon */
.admin-access-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c6aa76, #b8945f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(198, 170, 118, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid #ffffff;
}

.admin-access-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(198, 170, 118, 0.5);
    background: linear-gradient(135deg, #b8945f, #a67c4a);
}

.admin-access-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hide on mobile devices */
@media (max-width: 768px) {
    .admin-access-icon {
        display: none;
    }
}

/* Show admin icon for all desktop users */
@media (min-width: 769px) {
    .admin-access-icon {
        display: flex;
    }
} 

/* In Honor Section */
.in-honor {
    padding: 60px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.honor-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.honor-emblem {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 0.75rem;
}

.honor-emblem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(198, 170, 118, 0.35);
    box-shadow: 0 0 0 6px rgba(198, 170, 118, 0.08) inset, 0 10px 30px rgba(198, 170, 118, 0.12) inset;
}

.honor-subtitle {
    color: #c6aa76;
    margin-top: -0.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.honor-text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
} 

.honor-tribute {
    color: #c6aa76;
    margin-top: 1rem;
    font-size: 1rem;
} 

.honor-dates {
    color: #c6aa76;
    font-weight: 600;
    margin: 0.25rem 0 0.5rem 0;
}

.honor-service {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.honor-emblem-img {
    width: 64px;
    height: 64px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    margin: 0 auto;
} 

.memorial-banner {
    background: #111;
    border-bottom: 1px solid #333;
    color: #c6aa76;
    padding: 12px 0;
    font-size: 0.95rem;
}
.memorial-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.memorial-banner .banner-text {
    color: #c6aa76;
}
.memorial-banner .banner-actions a {
    color: #000000;
    background: #c6aa76;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.memorial-banner .banner-actions a:hover {
    background: #b89a66;
} 