/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header .logo img {
    height: 40px; /* Adjust as needed */
    width: auto;   /* Maintains aspect ratio */
    max-width: 100%; /* Ensures responsiveness */
}
/* Container for logo and text */
.Brand {
    display: flex;
    align-items: center;
}

/* Logo styling */
.logo {
    height: 50px; /* Adjust size as needed */
    margin-right: 10px; /* Space between logo and text */
    weight:auto;
}
.logo-container{

    display: flex;
    align-items: flex-start;
    gap: 10;
}
@media (max-width: 768px) {
    .brand-name {
        font-size: 1rem;
    }
    .logo-container {
        gap: 5px;
    }
}

/* Text styling */
.Brand-name {
    font-size: 1.5em; /* Adjust font size */
    font-weight: bold;
    color: #d4cb20; /* Customize color */
    align-items: center;

}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #0033A0; /* Chelsea Blue */
    
    top: 0;
    z-index: 1000;
    /*hamburger */
    .menu-toggle{
        display:block;
        font-size: 1.54m;
        background:none;
        color:rgb(255, 255, 255);
        Border:navbar  ;     
         Cursor:pointer;
    }
}
.logo{
    display:flex;
    align-items: center;
}
.logo img{
    height:50px;
    margin-right:10px;
}

.navbar .logo img {
    height: 50px; /* Logo size */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px62;
}

.nav-links li {
    position: relative;
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    text-shadow: 0 0 5px #666251;
    font-family: 'oswald',sans-serif;
    font-weight: bold;
    border-radius: 5px;
    padding:8px 15px
}

.nav-links a:hover {
    color: #ffcc00; /* Hover color */
}

/* Dropdown Menu */
.nav-links li:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0033A0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    width: 200px;
    z-index: 100;
}

.dropdown li {
    padding: 10px;
}

.dropdown li a {
    color: white;
    padding: 10px;
}

.dropdown li a:hover {
    background-color: #ffcc00;
}



/* Social Icons */
.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #0033A0;
        width: 100%;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .nav-links a {
        padding: 15px;
    }
}

/* General Reset and Basic Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    background-image: url('images/CFC.jpg'); /* Replace with your desired background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds dark overlay for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    background-color: #005BAC; /* Chelsea Blue */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #FFD700; /* Gold hover effect */
}

/* News Section Styles */
.news-section {
    background-color: #f8f9fa; /* Light gray background */
    padding: 50px 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.news-section p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for smooth effect */
}

.news-card:hover {
    transform: translateY(-10px); /* Moves the card up when hovered */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    font-size: 16px;
    color: #005BAC; /* Chelsea Blue */
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: #FFD700; /* Gold hover effect */
}

.video-section {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.video-section h2 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 30px;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.video-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 45%;  /* Adjust the width for 2 videos to fit side by side */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.video-card video {
    width: 100%;  /* Make the video responsive */
    height: 315px;
}

.video-card p {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
}


/* Styling for the live score section */
.live-score-section {
    padding: 20px;
    background-color: #0a1d31; /* Dark background */
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 90%;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

/* Live score cards container */
#live-scores {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual score card style */
.score-card {
    background-color: #1d3a5f; /* Lighter dark blue */
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for score card */
.score-card:hover {
    transform: translateY(-5px); /* Lift the card when hovered */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    background-color: #264a70; /* Darken background on hover */
}

/* Title of the match */
.score-card h3 {
    font-size: 20px;
    margin: 0;
    color: #ffcc00; /* Yellow for team names */
}

/* Score text */
.score-card p {
    font-size: 18px;
    margin: 5px 0;
    color: white;
}

/* Status text */
.score-card .status {
    font-weight: bold;
    color: #00d100; /* Green for LIVE status */
}

/* Score display */
.score-card .score {
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    margin: 10px 0;
}

/* Live match status */
.score-card .live-status {
    background-color: #ff3300; /* Red for live status */
    padding: 5px;
    color: white;
    font-size: 14px;
    border-radius: 5px;
}

/* Match status styles */
.live {
    color: #00d100; /* Green for live matches */
}

.scheduled {
    color: #ffcc00; /* Yellow for scheduled matches */
}
/* Styling for the last section (CTA) */
.cta-section {
    background-color: #003366; /* Blue background like Chelsea */
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cta-form input {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 300px;
}

.cta-form .cta-btn {
    background-color: #ffcc00; /* Chelsea's yellow button color */
    color: #003366; /* Dark blue text */
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-form .cta-btn:hover {
    background-color: #ffb700; /* Slightly darker yellow on hover */
}
/* Enhanced hover effects for the form elements */
.cta-form input {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #ffffff; /* White border for contrast */
    border-radius: 5px;
    width: 300px;
    transition: border-color 0.3s, transform 0.3s;
}

.cta-form input:focus {
    border-color: #ffcc00; /* Highlight with yellow border on focus */
    transform: scale(1.05); /* Slightly increase size when focused */
}

.cta-form .cta-btn {
    background-color: #ffcc00; /* Chelsea's yellow button color */
    color: #003366; /* Dark blue text */
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease-in-out;
}

.cta-form .cta-btn:hover {
    background-color: #ffb700; /* Slightly darker yellow on hover */
    transform: scale(1.1); /* Slightly increase size of the button on hover */
}

.cta-form .cta-btn:active {
    background-color: #e6a900; /* Darker yellow when clicked */
}
.cta-form input:invalid {
    border-color: red;
}

.cta-form input:valid {
    border-color: green;
}
.cta-section {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow on hover */
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1); /* Zoom effect on image */
}
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #003366;
    z-index: 100;
}
.fade-in-section {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.fade-in-section.is-visible {
    opacity: 1;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.managers-quotes {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.managers-quotes h2 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
}

.managers-quotes .quote-intro {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.quotes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.quote-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.quote-text {
    font-style: italic;
    color: #333;
}

.quote-card strong {
    font-weight: bold;
    color: #003366;
    display: block;
    margin-top: 10px;
}
.hero {
    background-image: url('CFC.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);  /* Semi-transparent black */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.quotes-container {
    display: flex;
    overflow-x: scroll;
}

.quote-card {
    width: 300px;
    padding: 20px;
    margin-right: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 50%;
    max-width: 600px;
}

.close {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}
/* Gallery Section */
.gallery {
    padding: 20px ;
    background-color: #1c2532;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
}

.gallery h2 {
    font-size: 2.5em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Gallery Slider (Holds all images) */
.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Gallery Item */
.gallery-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 2em;
    z-index: 1000;
    transform: translateY(-50%);
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
body {
    transition: background-image 1s ease-in-out;
}
.menu-toggle{
    display: inline;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color:black;
    padding: 10px;
    z-index: 1000; 
    position: absolute;
    top: 15px;
    right: 20px;

}
/* Show the button on smaller screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px; /* Adjust based on your navbar height */
        right: 0;
        width: 200px;
        border-radius: 5px;
        padding: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
    }
}

/* Add border and blue background to about section */
.about-section {
    background-color: #003366; /* Blue background */
    padding: 40px;
    text-align: left;
    color: white; /* White text for contrast */
    border: 5px solid #004488; /* Darker blue border */
    border-radius: 10px; /* Optional: adds rounded corners */
    margin: 20px auto; /* Optional: centers the section with margin */
    max-width: 90%; /* Optional: prevents section from being too wide */
}

/* Styling for images in the about section */
.about-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.about-images img {
    max-width: 45%; /* Adjust image width */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section headers */
.about-section h1,
.about-section h2 {
    text-align: center;
    margin: 20px 0;
    color: white; /* White text for headers */
}

/* List styling for Key Features */
.about-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-section li {
    margin: 5px 0;
    color: white; /* White text for the list items */
}
.live-score-section {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.live-score-section {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.live-score-section {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.live-score-section {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Footer Container */
.footer {
    background-color: #1a1a1a; /* Dark background color */
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: flex-start;
}

/* Footer Left */
.footer-left h3 {
    font-size: 50px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size:20px;
    max-width: 300px;
}

/* Footer Middle */
.footer-middle h4 {
    font-size: 30px;
    margin-bottom: 10px;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li {
    margin: 8px 0;
}

.footer-middle ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.footer-middle ul li a:hover {
    color: #f2b400; /* Gold color on hover */
}

/* Footer Right */
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.social-icon:hover {
    color: #f2b400; /* Gold color on hover */
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    background-color: #333;
}

.footer-bottom p {
    font-size: 14px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-middle, .footer-right {
        margin-bottom: 20px;
    }
}
/* Statistics Section */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap:30px;
    padding: 50px 20px;
    background-color: #f4f4f4;
    border-top: 5px solid #0073e6;
    border-bottom:5px solid 0073e6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-item {
    background: white;
    border:2px solid #0073e6;
    padding: 20px 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width:250px;
    text-align: center;
    margin: 20px;
    max-width:90%;
}
.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

.counter {
    font-size: 60px;
    font-weight: bold;
    color: #0073e6; /* Adjust to match your website's color scheme */
    margin:10px 0;
}

.stat-item p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.stat {
    margin: 10px 0;
    text-align: left;
}

.stat label {
    font-size: 0.9em;
    color: #ddd;
    margin-bottom: 5px;
    display: block;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
    position: relative;
}

.progress {
    background: #f39c12;
    height: 100%;
    transition: width 0.3s ease-in-out;
}
@media (max-width: 600px) {
    .players-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on small screens */
    }
}
