/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

:root {
    --primary: #000000;
    --accent: #971212;
    --light: #f5f5f5;
    --dark: #111111;
    --gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto' sans-serif;
}

body {
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #712121;
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo span {
    color: var(--accent);
}

/* Menu Toggle Button */
.menu-toggle {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--dark);
    z-index: 1050;
    padding: 100px 30px 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    list-style: none;
    margin-top: 20px;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-banner {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.banner-bg {
    background-image: url('../images/hero-bg.jpg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-slide,
.next-slide {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* About Section */
.about {
    background-color: #fff;
    padding: 30px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    font-size: 36px;
    position: relative;
}

/* .about h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e50914;
    margin: 15px auto;
} */

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.about-text {
    flex: 1;
    padding: 40px;
}


.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.about-image {
    flex: 1;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #971212;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #712121;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }
}

.about-video-slider-section {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
    position: relative;
}

.about-section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f8f8f8;
}

.about-section-title span {
    color: #e63946;
}

.about-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.about-slide {
    min-width: 100%;
    position: relative;
    background-color: #111;
    overflow: hidden;
}

.about-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: #fff;
}

.about-slide-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-slide-description {
    font-size: 1rem;
    opacity: 0.8;
}

.about-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(230, 57, 70, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-play-button:hover {
    background-color: rgba(230, 57, 70, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.about-play-button:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    margin-left: 7px;
}

.about-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.about-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #444;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slider-dot.active {
    background-color: #e63946;
    transform: scale(1.3);
}

.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.about-slider-arrow:hover {
    background-color: rgba(230, 57, 70, 0.8);
}

.about-prev {
    left: 20px;
}

.about-next {
    right: 20px;
}

.about-arrow-icon {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.about-prev .about-arrow-icon {
    transform: rotate(-135deg);
}

.about-next .about-arrow-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .about-slider-wrapper {
        height: 350px;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-slide-title {
        font-size: 1.2rem;
    }
    
    .about-play-button {
        width: 60px;
        height: 60px;
    }
}

/* Boxers Section */
.boxers {
    padding: 100px 0;
    background-color: var(--dark);
    color: white;
}

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

.boxer-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.boxer-image {
    height: 350px;
    overflow: hidden;
}

.boxer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.boxer-info {
    padding: 20px;
}

.boxer-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.boxer-category {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Events Section */
.events {
    padding: 100px 0;
    background-color: #666666;
}

.events-list {
    margin-top: 40px;
}

.event-card {
    display: flex;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.event-date {
    flex: 0 0 100px;
    background-color: var(--dark);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-details h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.event-location {
    color: var(--gray);
    display: flex;
    align-items: center;
    margin-top: 5px;
}

/* Section title */
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    color: #cccccc;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #ff3c3c;
}

/* Cards container */
.cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Event card */
.event-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #222222 0%, #111111 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-image {
    height: auto;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff3c3c;
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
    position: relative;
}

.event-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.fighters {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.fighter {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.vs {
    margin: 0 10px;
    color: #ff3c3c;
    font-weight: 800;
    font-size: 1.2rem;
}

.event-details {
    margin-top: 1rem;
    color: #cccccc;
    font-size: 1.1rem;
}

.venue {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.venue svg,
.ticket svg {
    margin-right: 0.5rem;
    min-width: 16px;
}

.ticket {
    display: flex;
    align-items: center;
}

.action-button {
    display: inline-block;
    background-color: #ff3c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #e62a2a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }

    .event-card {
        width: 100%;
    }
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--dark);
}

.blog h2 {
    color: white;
    margin-bottom: 40px;
}

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

.blog-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    /* color: #f5f5f5; */
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* Footer */
/* Footer Styling */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Left Column - Social Media */
.footer-social {
    flex-basis: 30%;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: #e63946;
}

.footer-social p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #aaa;
}

.social-widget {
    /* margin-top: 20px; */
    background: #222222;
    padding: 20px;
    border-radius: 12px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 8px 0;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border-bottom: 1px dotted #333;
}

.social-link:hover {
    color: #e63946;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    object-fit: contain;
}

.social-link span {
    font-size: 16px;
}

/* Middle Column - Contact Info */
.footer-contact-info {
    flex-basis: 25%;
    background-color: #222222;
    padding: 20px;
    border-radius: 12px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e63946;
}

.contact-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px dotted #333;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    object-fit: contain;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

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

.footer-links ul li a:hover {
    color: #e63946;
}

/* Right Column - Contact Form */
.footer-form {
    flex-basis: 40%;
    background-color: #222222;
    padding: 20px;
    border-radius: 12px;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

textarea.form-input {
    height: 100px;
    resize: none;
}

.submit-btn {
    padding: 12px 25px;
    background-color: #e63946;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c1272d;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {

    .footer-social,
    .footer-contact-info,
    .footer-form {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .event-image {
        height: 250px;
    }

    .event-card {
        flex-direction: row;
        align-items: center;
    }

    .event-info {
        flex: 1;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .event-details h3 {
        font-size: 1.5rem;
    }

    .event-location {
        font-size: 1rem;
    }

    .event-ticket {
        font-size: 1rem;
    }

    .event-date {
        flex: 0 0 80px;
        padding: 10px;
    }

    .date-day {
        font-size: 2rem;
    }

    .date-month {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .slider-controls {
        bottom: 15px;
    }

    .prev-slide,
    .next-slide {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        padding: 10px;
    }

    .date-day {
        margin-right: 5px;
    }

    .event-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-ticket {
        margin-top: 15px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}