/* NIKS FITNESS - Modern Gym Theme */

:root {
    --primary-black: #0a0a0a;
    --primary-red: #dc2626;
    --primary-silver: #c0c0c0;
    --primary-white: #ffffff;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
}

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

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

/* Navigation */
.navbar {
    background-color: var(--dark-gray) !important;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-red) !important;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

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

.nav-link:hover {
    color: var(--primary-red) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23dc2626" opacity="0.05" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-silver);
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red) !important;
    border: none !important;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background-color: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-silver);
    color: var(--primary-silver);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-silver);
    color: var(--primary-black);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto;
}

/* Cards */
.card {
    background-color: var(--dark-gray);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-text {
    color: var(--primary-silver);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    border: 2px solid var(--primary-silver);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing-price {
    font-size: 3rem;
    color: var(--primary-white);
    font-weight: 900;
    margin-bottom: 10px;
}

.pricing-duration {
    color: var(--primary-silver);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

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

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--primary-silver);
    padding: 40px 0 20px;
    border-top: 3px solid var(--primary-red);
}

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

.footer a {
    color: var(--primary-silver);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Contact Form */
.form-control {
    background-color: var(--dark-gray);
    border: 1px solid var(--primary-silver);
    color: var(--primary-white);
    padding: 12px;
    border-radius: 5px;
}

.form-control:focus {
    background-color: var(--dark-gray);
    border-color: var(--primary-red);
    color: var(--primary-white);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.form-label {
    color: var(--primary-silver);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Testimonials */
.testimonial {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--primary-silver);
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--primary-red);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}
