:root {
    --primary-red: #dc3545;
    --dark-bg: #1a1a1a;
    --darker-bg: #121212;
    --silver: #c0c0c0;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--primary-red);
}

.nav-link {
    color: var(--silver) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
}

.btn-join {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(220, 53, 69, 0.3)), url('/public/images/gym-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 30px;
}

.hero-content .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 10px;
}

.btn-primary {
    background: var(--primary-red);
    border: none;
}

.btn-primary:hover {
    background: #c82333;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-bg);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-red);
}

.section-title p {
    color: var(--silver);
    font-size: 1.1rem;
}

.bg-dark-section {
    background: var(--darker-bg);
}

.facility-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.2);
}

.facility-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.facility-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--silver);
    font-size: 0.95rem;
}

.trainer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trainer-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trainer-photo-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
}

.trainer-photo-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-info h4 {
    margin-bottom: 5px;
}

.trainer-info p {
    color: var(--primary-red);
    font-weight: 500;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover, .pricing-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.pricing-card .price small {
    font-size: 1rem;
    color: var(--silver);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--primary-red);
    margin-right: 10px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.package-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.package-card h5 {
    margin-bottom: 10px;
}

.package-card p {
    color: var(--silver);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.package-card .price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-red);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--silver);
    margin-bottom: 20px;
}

.testimonial-card h5 {
    color: var(--primary-red);
}

.about-content {
    padding: 30px 0;
}

.about-content h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--silver);
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    padding: 10px 0;
    color: var(--silver);
}

.about-content ul li i {
    color: var(--primary-red);
    margin-right: 10px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-info i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.contact-info h5 {
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--silver);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p, .footer li {
    color: var(--silver);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    padding: 8px 0;
}

.footer ul li a {
    color: var(--silver);
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--silver);
    font-size: 0.9rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--silver);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-red);
    color: var(--white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}
