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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: #e00;
}

.navbar a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

.navbar a:hover, .navbar a.active {
    color: #e00;
}

/* Hero Section */
.hero {
    background: url('../img/hero-placeholder.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero .hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #e00;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #b00;
}

/* Sections Styling */
.section {
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #fff;
}

/* Featured Event Section */
.featured-event {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.featured-event img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.featured-event .details {
    max-width: 500px;
}

.featured-event .details h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-event p {
    font-size: 18px;
    margin-bottom: 20px;
}

.featured-event .btn {
    background-color: #e00;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.featured-event .btn:hover {
    background-color: #b00;
}

/* Grid Layout (Cards) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card, .fighter-card, .event-item {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card img, .fighter-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h3, .fighter-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p, .fighter-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.card a, .fighter-card a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #e00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card a:hover, .fighter-card a:hover {
    background-color: #b00;
}

/* Event Item */
.event-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Rankings Section */
ol {
    padding-left: 20px;
    font-size: 18px;
}

ol li {
    margin-bottom: 10px;
}

ol li:first-child {
    font-weight: bold;
    color: #e00;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-card {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.news-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-card a {
    font-size: 16px;
    color: #e00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card a:hover {
    color: #b00;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background-color: #e00;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #b00;
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #ddd;
}

footer a {
    color: #e00;
    text-decoration: none;
}

footer a:hover {
    color: #b00;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }

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

    .grid, .grid .card, .grid .news-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }
}
