/* ========================================
   PROWARRIOR MMA - ENHANCED UI/UX WITH ADVANCED ANIMATIONS
   ======================================== */

/* Advanced Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(244, 196, 48, 0.3); }
    50% { box-shadow: 0 0 40px rgba(244, 196, 48, 0.6); }
}

/* Preloader Enhancement */
.preloader {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.preloader-circle {
    animation: pulse 2s ease-in-out infinite;
}

/* Typography Improvements */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

/* Header Improvements */
.header-area .main-menu ul li a {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero__caption h1 {
    font-size: 72px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    animation: fadeInScale 1s ease-out;
    background: linear-gradient(45deg, #fff, #f4c430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__caption span {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    animation: slideInLeft 0.8s ease-out;
    display: inline-block;
}

/* Section Titles */
.section-tittle h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-tittle h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f4c430, #ffd700);
    border-radius: 2px;
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

/* What We Offer Cards */
.single-cat {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    padding: 20px;
}

.single-cat:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.3), 0 0 60px rgba(244, 196, 48, 0.1);
    background: rgba(255,255,255,0.05);
    animation: glow 2s ease-in-out infinite;
}

.single-cat .cat-icon img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.single-cat:hover .cat-icon img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1);
}

.single-cat .cat-cap h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    letter-spacing: 0.5px;
}

.single-cat .cat-cap p {
    font-size: 15px;
    line-height: 1.8;
    color: #b8b8b8;
}

/* Health Benefits Section */
.health-benefits-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    position: relative;
}

.health-benefits-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 196, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-item {
    transition: all 0.3s ease;
    padding: 15px 20px 15px 40px !important;
    border-radius: 8px;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #f4c430, #ffd700);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.benefit-item:hover::before {
    height: 70%;
}

.benefit-item:hover {
    background: rgba(244, 196, 48, 0.08);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.15);
}

.benefit-item h5 {
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Gallery Section */
.gallery-img {
    transition: all 0.5s ease;
}

.box:hover .gallery-img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.box .overlay {
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.9), rgba(255, 215, 0, 0.9));
}

/* About/Head Coach Section */
.about-area2 {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-area2 .right-img img {
    border: 4px solid rgba(244, 196, 48, 0.3);
    transition: all 0.4s ease;
}

.about-area2 .right-img img:hover {
    border-color: #f4c430;
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(244, 196, 48, 0.3);
}

.about-area2 h2 {
    position: relative;
    padding-bottom: 20px;
}

.about-area2 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f4c430, #ffd700);
    border-radius: 2px;
}

.about-area2 p {
    font-size: 16px;
    line-height: 1.9;
}

/* Video Section */
.video-area {
    position: relative;
    min-height: 500px;
}

.video-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.btn-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: linear-gradient(135deg, #f4c430, #ffd700);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.4);
}

.btn-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.6), 0 0 80px rgba(244, 196, 48, 0.4);
    animation: pulse 1s ease-in-out infinite;
}

/* Services/Contact Section */
.services-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.single-services {
    transition: all 0.4s ease;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}

.single-services:hover {
    background: rgba(244, 196, 48, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.2), 0 0 60px rgba(244, 196, 48, 0.1);
}

.single-services .features-icon i {
    transition: all 0.3s ease;
}

.single-services:hover .features-icon i {
    transform: scale(1.15) rotate(10deg);
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(244, 196, 48, 0.6));
}

.single-services h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.single-services p {
    font-size: 14px;
    line-height: 1.7;
}

/* Buttons */
.border-btn, .btn {
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.border-btn::before, .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.border-btn:hover::before, .btn:hover::before {
    width: 300px;
    height: 300px;
}

.border-btn:hover, .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(244, 196, 48, 0.4), 0 0 50px rgba(244, 196, 48, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Footer */
.footer-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
}

.footer-social a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    background: rgba(244, 196, 48, 0.1);
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f4c430, #ffd700);
    transform: translateY(-8px) rotate(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(244, 196, 48, 0.5), 0 0 40px rgba(244, 196, 48, 0.3);
}

/* Scroll to Top Button */
#back-top {
    background: linear-gradient(135deg, #f4c430, #ffd700);
    border-radius: 50%;
    transition: all 0.3s ease;
}

#back-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(244, 196, 48, 0.6), 0 0 50px rgba(244, 196, 48, 0.4);
    animation: pulse 1s ease-in-out infinite;
}

/* Page Load Animations */
.wow {
    visibility: hidden;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Parallax Effect */
.video-area {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Smooth Page Transitions */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Loading Bar */
.preloader-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-top-color: #f4c430;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .single-services {
        padding-left: 0 !important;
    }
    
    .hero__caption h1 {
        font-size: 42px;
    }
    
    .section-tittle h2 {
        font-size: 32px;
    }
    
    .benefit-item {
        padding-left: 20px !important;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-area2 .section-tittle2 {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .hero__caption h1 {
        font-size: 52px;
    }
    
    .section-tittle h2 {
        font-size: 38px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #f4c430;
    color: #000;
}

::-moz-selection {
    background: #f4c430;
    color: #000;
}
