/* Color Palette & Variables */
:root {
    --bg-dark: #070707;
    --bg-darker: #000000;
    --bg-card: #111111;
    --primary-red: #D71920;
    /* Bright, energetic red */
    --primary-red-hover: #b3141a;
    --text-light: #ffffff;
    --text-muted: #aaaaaa; /* Improved contrast for better legibility on dark backgrounds */

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.text-red {
    color: var(--primary-red);
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 15rem;
    /* Larger for impact */
    max-width: 80vw;
    opacity: 0;
    transform: scale(0.8);
}

/* Buttons */
.btn-solid-red {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-solid-red:hover {
    background-color: transparent;
    color: var(--primary-red);
    box-shadow: 0 0 20px rgba(215, 25, 32, 0.4);
}

.btn-outline-white {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--text-light);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 1px;
}

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

.btn-outline-red {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-red);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-red:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    /* Subtle zoom effect applied without over-darkening */
    transform: scale(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Smoother gradient for readability without blacking out the right side completely */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about {
    background-color: var(--bg-dark);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    border-left: 3px solid var(--primary-red);
    padding-left: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-image-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-image-box:hover .about-img {
    filter: grayscale(0%);
}

.red-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-red);
    z-index: -1;
}

/* Services Section */
.services {
    background-color: var(--bg-darker);
}

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);
    background-color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Membership Section */
.membership {
    background-color: var(--bg-dark);
}

.perks-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.perks-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.registration-note {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(215, 25, 32, 0.1);
    border-left: 4px solid var(--primary-red);
    display: inline-block;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(215, 25, 32, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-table th {
    background-color: #1a1a1a;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.pricing-table td {
    font-size: 1.2rem;
    font-weight: 500;
}

.price-val {
    color: var(--primary-red);
    font-weight: 700;
    text-align: right !important;
}

.pricing-table tbody tr:hover {
    background-color: rgba(215, 25, 32, 0.08);
    transform: scale(1.02);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.membership-card-visual {
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(215, 25, 32, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    transform: translateZ(-50px);
}

/* Contact Section */
.contact {
    background-color: var(--bg-darker);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-all; /* Prevents overflow on long emails/links on mobile */
    opacity: 0.9;
}

.contact-link:hover {
    color: var(--primary-red);
    opacity: 1;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* Booking Section */
.booking {
    background-color: var(--bg-dark);
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form-container {
    background-color: var(--bg-card);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid rgba(215, 25, 32, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.booking-form-container h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(215, 25, 32, 0.2);
}

/* Contact Section Map Restore */
.contact-map {
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-map::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(135deg, rgba(215,25,32,0.1) 0%, rgba(0,0,0,0) 100%);
}

.map-placeholder {
    text-align: center;
    opacity: 0.5;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(215, 25, 32, 0.3));
}

.map-placeholder p {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.w-100 { width: 100%; }

/* Footer */
.footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Responsive */
@media (max-width: 992px) {
    .section-grid, .contact-box {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-form-container {
        padding: 2.5rem 1.5rem;
    }

    .contact-map {
        min-height: 300px;
    }

    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: #050505; /* Solid dark background to ensure visibility */
    }

    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1050;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        color: #ffffff;
        cursor: pointer;
        flex-shrink: 0;
        margin-right: 10px;
    }
    
    .hero-bg img {
        object-position: center;
        filter: brightness(0.4) contrast(1.2);
    }
    
    .hero-bg::after {
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    /* Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0,0,0,0.98);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(215, 25, 32, 0.5);
        z-index: 1040;
    }

    .contact-info .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .info-item {
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .info-item h4 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .social-links a {
        font-size: 1rem;
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}