/* CSS Variables */
:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #333;
    --white: #F0F0F0;
    --font-primary: 'Georgia', serif;
    --font-secondary: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-secondary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-bottom: 1px solid var(--gold);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo a {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--white);
    display: block;
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--gold);
}

.member-access, .login-btn {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.8) 100%);
    position: relative;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: var(--black);
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Practice Grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practice-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.practice-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.practice-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
}

.practice-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: var(--black);
    text-decoration: none;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gold);
}

.stat-number {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--gold);
    padding: 3rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button, .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        margin-top: 100px;
        height: auto;
        padding: 2rem 0;
    }
}
/* Fix for fixed navbar overlapping content */
body {
    padding-top: 80px; /* This pushes all content down below the navbar */
}

/* Adjust hero section to account for body padding */
.hero {
    margin-top: 0;
    height: calc(100vh - 80px);
}

/* Remove individual container margins since body has padding */
.container {
    margin-top: 0;
    padding-top: 0;
}
/* Add these to your existing CSS for global use */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure animations work properly */
.animate-fade-in-up,
.animate-fade-in-down {
    opacity: 0;
}

/* Enhanced button styles */
.cta-button-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Practice card enhancements */
.practice-card-enhanced {
    transition: all 0.3s ease;
}