/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn,
.nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.text-primary {
    color: #1d428a !important;
    /* Pistons Blue */
}

.bg-primary {
    background-color: #1d428a !important;
}

.text-danger {
    color: #c8102e !important;
    /* Pistons Red */
}

.bg-danger {
    background-color: #c8102e !important;
}

.btn-primary {
    background-color: #1d428a;
    border-color: #1d428a;
}

.btn-primary:hover {
    background-color: #102d66;
    border-color: #102d66;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-left: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: #c8102e !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /* Full viewport height */
    min-height: 700px;
    color: white;
    background-color: #000;
}

.hero-bg {
    background: url('assets/membershipheader_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    /* Hidden initially for GSAP */
}

.hero-content {
    z-index: 2;
    height: 100%;
}

.hero-player {
    bottom: 0px;
    /* Adjust based on image composition */
    right: 0px;
    max-height: 95vh;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(50px);
    z-index: 2;
}

.hero-lockup-container {
    position: absolute;
    top: 35%;
    /* Adjust vertically */
    left: 10%;
    /* Adjust horizontally */
    max-width: 50%;
    z-index: 3;
}

.hero-lockup {
    width: 100%;
    max-width: 600px;
    /* Limit logo size */
    opacity: 0;
    /* Hidden initially */
    transform: scale(0.8);
}

.hero-cta-container {
    position: absolute;
    top: 65%;
    /* Below the logo */
    left: 15%;
    /* Align with logo roughly */
    z-index: 4;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(20px);
}

.hero-btn img {
    max-width: 250px;
    transition: transform 0.3s ease;
}

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

/* Sections */
.section-title {
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    /* display: inline-block; */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #c8102e;
    margin: 10px auto 0;
}

/* Benefits */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid gray !important;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Compare Table */
.compare-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.compare-table thead th {
    background-color: #1d428a;
    color: white;
    font-size: 1.2rem;
    padding: 1.5rem;
    border: none;
}

.compare-table th:first-child {
    background-color: #000;
}

.compare-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.compare-table tbody tr:hover {
    background-color: #e9ecef;
    transform: scale(1.01);
    transition: transform 0.2s;
}

.bg-blue {
    background-color: #1d428a;
}

/* Option Cards */
.option-card {
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.option-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-player {
        opacity: 0.4;
        /* Fade player more on mobile so text pops */
        right: -100px;
    }

    .hero-lockup-container {
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        max-width: 90%;
    }

    .hero-cta-container {
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
    }
}