/* Custom variables for Tapout Gym */
:root {
    --primary: #E53935;
    --primary-dark: #b71c1c;
    --text-main: #1A1A2E;
    --text-muted: #6C757D;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand.text-white {
    color: #fff !important;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-main) !important;
}

.navbar.scrolled .navbar-brand.text-white {
    color: var(--text-main) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

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

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Facilities */
.facility-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

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

/* Stats */
.stats-section {
    background: var(--primary);
    color: white;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Gallery */
.gallery-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-img:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 60px 0 20px;
}

.hover-white {
    transition: var(--transition);
}

.hover-white:hover {
    color: white !important;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}