/* Global Styles */
:root {
    --primary-color: #0078d7;
    --secondary-color: #ff6600;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 600;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.ticket-btn {
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.ticket-btn:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    /*height: 100vh;*/
    overflow: hidden;
}

.carousel-item
{
    width:100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    bottom: 30%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    background-color: transparent;
    border-color: var(--light-color);
}

/* Matches Section */
.matches-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.match-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.match-header {
    background: linear-gradient(to right, #0078d7, #00a1ff);
    color: var(--light-color);
    padding: 15px;
    text-align: center;
}

.match-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.match-content {
    padding: 20px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    text-align: center;
    width: 40%;
}

.team img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.match-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.match-info p {
    margin-bottom: 5px;
}

.match-info .btn {
    margin-top: 15px;
    border-radius: 30px;
    padding: 8px 25px;
}

/* Teams Section */
.teams-section {
    padding: 80px 0;
}

.team-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-logo {
    margin-bottom: 20px;
}

.team-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-card p {
    color: #666;
    margin-bottom: 20px;
}

.team-card .btn {
    border-radius: 30px;
    padding: 8px 25px;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 0;
}

.footer-logo {
    max-width: 150px;
}

.footer-about p {
    margin-bottom: 25px;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.copyright {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: #bbb;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 5px;
    }
    
    .ticket-btn {
        margin: 10px 0 0 0;
        display: inline-block;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .carousel-caption {
        bottom: 20%;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .footer-about, .footer-links, .footer-newsletter {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}