* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a651;
    --secondary-color: #0066cc;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --hover-color: #008a43;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.top-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px !important;
    width: auto !important;
    transform: scale(2);
    transform-origin: left center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.donate-link {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.donate-link:hover {
    background-color: var(--hover-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

.hero {
    background: url('images/hero-bg-new.jpg') center center / cover no-repeat, linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
    color: white;
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Football Showcase Section */
.football-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.football-showcase h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.football-showcase .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image {
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.showcase-image img:hover {
    transform: scale(1.05);
}

.showcase-details h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.showcase-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.showcase-features li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-features i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.showcase-note {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-image img {
        max-width: 80%;
    }
}

.about-section {
    padding: 80px 20px;
    background-color: white;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.programme-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.programme-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.programme-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.programme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.programme-icon i {
    font-size: 2.5rem;
    color: white;
}

.programme-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.programme-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--hover-color);
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.stats-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.impact-report {
    text-align: center;
    margin-top: 40px;
}

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

.safeguarding-link {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-stories {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.success-stories h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.story-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.story-link:hover {
    color: var(--hover-color);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.supporters-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.supporters-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.supporters-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    text-align: center;
}

.supporters-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.supporter-logo {
    width: 200px;
    height: 150px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supporter-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.supporter-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.supporters-content h3 {
    font-size: 1.8rem;
    color: white;
    margin: 40px 0 30px;
    text-align: center;
}

.funders-logos,
.members-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.funder-logo,
.member-logo {
    width: 150px;
    height: 100px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.funder-logo img,
.member-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.social-feed {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.feed-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.twitter-feed {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tweet {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.tweet:last-child {
    border-bottom: none;
}

.tweet-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tweet p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.tweet-actions {
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.tweet-actions span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-feed {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.instagram-post {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-social a:hover {
    color: var(--primary-color);
}

.contact-section {
    padding: 80px 20px;
    background-color: white;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.donate-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.donate-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.donate-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.donate-card ul {
    list-style: none;
    padding: 0;
}

.donate-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.donate-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.donate-card p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.shop-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.shop-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.shop-item {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-10px);
}

.shop-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.shop-image i {
    font-size: 3rem;
    color: white;
}

.shop-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.shop-item p {
    color: rgba(255,255,255,0.8);
}

.shop-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-section h2,
    .programme-section h2,
    .stats-header h2,
    .testimonials-section h2,
    .success-stories h2,
    .supporters-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .feed-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static;
        padding-left: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .programme-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
