:root {
    --primary-color: #FF0099;
    /* Hot Pink */
    --secondary-color: #00CCFF;
    /* Electric Blue */
    --accent-color: #FFD700;
    /* Bright Yellow */
    --dark-bg: #1a1a1a;
    --text-color: #ffffff;
    --font-heading: 'Bangers', cursive;
    --font-body: 'Roboto', sans-serif;
}

@import url('sections.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.main-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2.5rem;
    text-shadow: 2px 2px var(--primary-color);
    letter-spacing: 2px;
    display: none;
    /* Hide H1 if present */
}

.logo img {
    max-height: 60px;
    /* Adjust header height */
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay to make text readable */
    z-index: -1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    text-shadow: 4px 4px 0 #000;
    margin-bottom: 1rem;
    animation: bounceIn 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    border: 3px solid #000;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 5px 5px 0 var(--primary-color);
}

.btn:hover {
    transform: translate(-2px, -2px);
    background-color: #fff;
    box-shadow: 7px 7px 0 var(--primary-color);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

/* Fix for page gallery overlap */
.gallery-section.full-gallery {
    padding-top: 160px;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Footer */
.main-footer {
    background-color: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}



/* Animations */
@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Gallery Video Support */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item .fa-play {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 0 5px #000);
}

.hero-content,
.section-title,
.member-card,
.fight-card,
.gallery-item {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

.member-card:nth-child(2) {
    animation-delay: 0.2s;
}

.member-card:nth-child(3) {
    animation-delay: 0.4s;
}

.fight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fight-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Mobile Menu */
.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* Hide for now, implement JS toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        width: 95%;
    }

    section {
        padding-top: 140px;
        /* Ensure content clears fixed header */
    }
}



/* Tour Section - Revamped */
.tour-section {
    position: relative;
    background-color: #111;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 204, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 10px, #222 10px, #222 20px);
    background-attachment: fixed;
    /* Parallax Effect */
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
    /* Removed top border as ropes handle it */
    border-bottom: 3px solid var(--primary-color);
}

.tour-section .section-title {
    color: var(--accent-color);
    text-shadow:
        4px 4px 0 #000,
        0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 4rem;
    font-size: 4rem;
    transform: rotate(-2deg);
    display: inline-block;
}

.fight-cards {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.fight-card {
    background: #222;
    border: 3px solid var(--secondary-color);
    width: 320px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.fight-card:nth-child(even) {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.2);
}

.fight-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.fight-card:hover:nth-child(odd) {
    box-shadow: 0 0 30px var(--secondary-color);
}

.fight-card:hover:nth-child(even) {
    box-shadow: 0 0 30px var(--primary-color);
}

/* Date Box - Top part */
.date-box {
    background-color: var(--secondary-color);
    color: #000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    margin-bottom: -1rem;
    z-index: 2;
}

.fight-card:nth-child(even) .date-box {
    background-color: var(--primary-color);
    color: #fff;
}

.date-box .day {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    font-family: var(--font-heading);
}

.date-box .month {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Info Section */
.fight-info {
    padding: 2.5rem 1.5rem 1.5rem;
    flex-grow: 1;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.fight-info h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 2px 2px 0 #000;
}

.fight-info p {
    color: #bbb;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ticket Button */
.btn-ticket {
    display: block;
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    border-top: 2px dashed #444;
}

.btn-ticket:hover {
    background: var(--accent-color);
    color: #000;
    letter-spacing: 2px;
}

/* "VS" Background */
.fight-card::before {
    content: 'VS';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .fight-cards {
        flex-direction: column;
        align-items: center;
    }

    .fight-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Ring Ropes Divider */
.ring-ropes-divider {
    padding: 2rem 0;
    background: #111;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    /* Ensure on top */
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    /* Depth shadow falling on next section */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    /* Optional stylistic clip? actually let's keep it simple first */
    /* Let's stick to the box shadow for now, clip path might cut off the ropes */
}

.rope {
    height: 12px;
    /* Thicker ropes */
    width: 110%;
    /* Extend beyond viewport to avoid edge issues */
    margin-left: -5%;
    position: relative;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    /* Individual rope depth */
    /* Twisted rope effect using gradient */
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 10px,
            transparent 10px,
            transparent 20px);
    border-radius: 5px;
}

.rope-top {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 5px 5px rgba(0, 0, 0, 0.5);
    animation: ropeBounce 3s infinite ease-in-out;
}

.rope-middle {
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color), 0 5px 5px rgba(0, 0, 0, 0.5);
    animation: ropeBounce 3s infinite ease-in-out 0.2s;
    /* Delay */
}

.rope-bottom {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 5px 5px rgba(0, 0, 0, 0.5);
    animation: ropeBounce 3s infinite ease-in-out 0.4s;
    /* Delay */
}

@keyframes ropeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

}

/* Floating Audio Toggle */
#audio-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#audio-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 0, 153, 0.8);
}

#audio-toggle.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
    #audio-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left side to balance with audio toggle on right */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff;
}

.btn-whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
}

@media (max-width: 768px) {
    .btn-whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    /* Hidden by default, JS shows it */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--primary-color);
    padding: 1rem;
    z-index: 10000;
    /* Ensure on top of everything */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
}

.btn-cookie {
    background-color: var(--secondary-color);
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-cookie:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transform: scale(1.05);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        padding-bottom: 5rem;
        /* Make space for mobile nav/whatsapp button if needed */
    }
}