/* Premium Gym Styles (Plain CSS) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #26452D;
    --secondary: #FF3B30; /* Power Red */
    --dark: #121212;
    --light: #F8F9FA;
    --glass: rgba(255, 255, 255, 0.1);
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1; /* Firefox */
}

select option {
    background-color: #fff;
    color: #000;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    text-transform: uppercase;
    font-weight: 900;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white; /* Better contrast with red */
}

.btn-secondary:hover {
    background-color: #e6352b;
    border-color: #e6352b;
    color: white;
}

.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    color: white;
}

/* Navigation Styles */
.navbar-header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1050;
    transition: all 0.4s ease;
}

.nav-link-premium {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: #fff;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    width: 100%;
}

.offcanvas {
    border-left: 1px solid rgba(255, 59, 48, 0.2);
}

/* Custom Glassmorphism */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

/* Bottom Pill Navigation - Dynamic META Style */
.bottom-nav-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    width: auto;
    max-width: 90vw;
}

.nav-links-wrapper {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 8px 10px;
    display: flex;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-links-wrapper a, .nav-links-wrapper button {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 50px;
    white-space: nowrap;
    background: none;
    border: none;
}

.nav-links-wrapper a.active, .nav-links-wrapper a:hover, .nav-links-wrapper button:hover {
    color: #fff;
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

.hover-glow {
    transition: all 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 59, 48, 0.2);
    border-color: var(--secondary) !important;
    transform: translateY(-10px);
}

.mobile-nav-toggle {
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .nav-links-wrapper {
        display: none;
        flex-direction: column;
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .nav-links-wrapper.show {
        display: flex;
        animation: slideUp 0.3s ease-out forwards;
    }

    .nav-links-wrapper a, .nav-links-wrapper button {
        padding: 12px;
        text-align: center;
        border-radius: 12px;
        width: 100%;
    }

    @keyframes slideUp {
        from { transform: translate(-50%, 20px); opacity: 0; }
        to { transform: translate(-50%, 0); opacity: 1; }
    }

    /* Mobile Overrides */
    .py-100 { padding: 60px 0 !important; }
    .pt-100 { padding-top: 60px !important; }
    .hero-title { font-size: 3.5rem !important; margin-bottom: 1.5rem !important; }
    .hero-watermark { display: none !important; }
    .hero-subtitle { font-size: 0.9rem !important; }
    .display-3 { font-size: 2.8rem !important; }
    .display-4 { font-size: 2.5rem !important; }
    .display-5 { font-size: 2rem !important; }
    
    .footer-premium { padding-bottom: 120px !important; }
    .stat-number { font-size: 2.2rem !important; }
    .stat-card { padding: 25px 15px !important; border-radius: 20px !important; }
    
    .club-card img, .gallery-img { height: 300px !important; }
    
    .container { padding-left: 20px !important; padding-right: 20px !important; }
    
    .position-absolute.top-0.start-50 {
        width: 100%;
        margin-top: 2rem !important;
    }
    
    .navbar-brand img { height: 35px !important; }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.hero-section .hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, var(--dark) 0%, #000 100%);
    position: relative;
    z-index: 5;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 59, 48, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 59, 48, 0.05);
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--light);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    text-transform: uppercase;
}

.stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Club Card */
.club-card {
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 20px;
}

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

.club-card:hover img {
    transform: scale(1.1);
}

.club-card img {
    transition: transform 0.5s ease;
    height: 400px;
    object-fit: cover;
}

.club-card .card-img-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

/* Trainer Card */
.trainer-card {
    border: none;
    background: none;
}

.trainer-card .img-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.trainer-card h4 {
    margin-bottom: 0.2rem;
}

.trainer-card span {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-item-premium {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 59, 48, 0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.gallery-item-premium:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-premium:hover .gallery-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.bg-darker {
    background-color: #0c0c0c;
}

.py-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.footer-premium {
    background: #000;
    border-top: 1px solid rgba(255, 59, 48, 0.1);
}

.footer-premium .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-premium .social-icon:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li i {
    font-size: 1.1rem;
}

.footer-contact li span {
    line-height: 1.6;
}
