/* Main Styles for Cleats For A Cause */

@font-face {
    font-family: 'Franchise';
    src: url('../fonts/Franchise-Free-Bold.woff2') format('woff2'),
         url('../fonts/Franchise-Free-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --light-green: #8FBC8F;
    --dark-green: #32431b;
    --beige: #F8F6F0;
    --light-beige: #FAF9F5;
    --accent-blue: #1e73be;
}

body {
    font-family: 'Metropolis', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--light-beige);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--light-green);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-green);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    font-family: 'Metropolis', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    color: var(--dark-green);
    text-transform: uppercase;
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item.active .nav-link {
    color: var(--accent-blue);
    background-color: rgba(31, 115, 190, 0.05);
}

.navbar-toggler {
    border: none;
    color: var(--dark-green);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a65a8;
    border-color: #1a65a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--light-green);
    border-color: var(--light-green);
    color: white;
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7daa7d;
    border-color: #7daa7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Card Styles */
.card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    margin-bottom: 30px;
}

.impact-number {
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    color: #666;
}

/* Testimonials */
.testimonial {
    background-color: white;
    padding: 2rem;
    border-left: 5px solid var(--light-green);
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-green);
}

/* Events */
.event-card {
    position: relative;
    overflow: hidden;
}

.event-date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-left: 5px solid var(--light-green);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
    font-weight: bold;
}

/* Contact */
.contact-info {
    background-color: white;
    padding: 2rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-blue);
}

/* Team */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Donation Options */
.donation-option {
    background-color: white;
    padding: 2rem;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.donation-amount {
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.donation-description {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.social-links li {
    margin-right: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Success Stories Section */
.success-story {
    background-color: white;
    padding: 2rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.success-story img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Core Values */
.core-value {
    text-align: center;
    margin-bottom: 30px;
}

.core-value i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.core-value h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
    background-color: var(--accent-blue);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: white;
    color: var(--accent-blue);
    border: none;
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--light-beige);
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Your Impact Section */
.impact-item {
    background-color: white;
    padding: 2rem;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.impact-item i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.impact-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Equipment Donation */
.equipment-donation {
    background-color: var(--light-beige);
    padding: 2rem;
    border: 2px solid var(--light-green);
    margin-bottom: 30px;
}

.equipment-donation h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.equipment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.equipment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Featured Event */
.featured-event {
    background-color: white;
    padding: 2rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-blue);
}

.featured-event h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.featured-event-date {
    display: inline-block;
    background-color: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-family: 'Franchise', Impact, 'Arial Black', sans-serif;
}

/* Mission & Vision */
.mission-vision {
    background-color: white;
    padding: 2rem;
    margin-bottom: 30px;
}

.mission-vision h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 0.5rem;
}

/* Quick Links */
.quick-links {
    background-color: var(--light-beige);
    padding: 2rem;
    margin-bottom: 30px;
}

.quick-links h3 {
    margin-bottom: 1.5rem;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 0.75rem;
}

.quick-links-list a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links-list a:hover {
    color: var(--dark-green);
    text-decoration: underline;
} 
