:root {
    --primary-color: #ff3c00;
    --primary-dark: #cc3000;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --bg-main: #0a0a0a;
    --bg-secondary: #141414;
    --nav-bg: rgba(10, 10, 10, 0.9);
    --font-family: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
}

body.theme-yoga {
    --primary-color: #ff33cc;
    --primary-dark: #cc0099;
    --text-main: #2a002a;
    --text-muted: #663366;
    --bg-main: #ffeeff;
    --bg-secondary: #ffddff;
    --nav-bg: rgba(255, 238, 255, 0.9);
}

body.theme-hardcore {
    --primary-color: #e60000;
    --primary-dark: #990000;
    --text-main: #ececec;
    --text-muted: #888888;
    --bg-main: #050505;
    --bg-secondary: #111111;
    --nav-bg: rgba(5, 5, 5, 0.9);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(150, 150, 150, 0.1);
    transition: background 0.5s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 60, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main) !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* Subtle gradient to placeholder image place */
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%), #1a1a1a;
    z-index: 1;
    opacity: 0.6;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add mobile menu later */
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-bg {
        width: 100%;
        background: linear-gradient(to top, var(--bg-main) 0%, rgba(10,10,10,0.5) 100%), #1a1a1a;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* Common Section Styles */
.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 600;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.experience-card {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform var(--transition-fast);
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

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

.pro-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-text {
    color: white;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform var(--transition-fast);
}

.about-image:hover {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: 1;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .image-accent {
        display: none;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    background: var(--bg-main);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.w-100 {
    width: 100%;
    text-align: center;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.review-rating {
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .pricing-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: scale(1) translateY(-5px);
    }
}

@media (max-width: 576px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Split Screen Intro Styles
   ========================================= */
.split-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.split-container.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    pointer-events: none;
}

.split {
    width: 50%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.split.left {
    background-color: #ffeeff; /* Light pink background */
    color: #ff33cc;
    border-right: 1px solid rgba(255, 51, 204, 0.2);
}

.split.right {
    background-color: #050505;
    color: #e60000;
    border-left: 1px solid rgba(230, 0, 0, 0.2);
}

.split-container:hover .split {
    width: 45%;
}
.split-container .split:hover {
    width: 55%;
}

.split-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 40px;
    transition: transform 0.4s ease;
}

.split:hover .split-content {
    transform: scale(1.05);
}

.split h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.split.right h2 {
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.split p {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.split:hover p {
    opacity: 1;
    transform: translateY(0);
}

.unicorn-bg, .hardcore-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 6s linear;
    transform: scale(1);
    z-index: 1;
}

.split.left:hover .unicorn-bg {
    opacity: 0.9;
    transform: scale(1.1);
    /* Unicorn vibe overlay */
    background: radial-gradient(circle at center, rgba(255, 153, 235, 0.2) 0%, rgba(255, 230, 242, 0) 100%),
                url('../assets/images/unicorn.png');
    background-size: cover;
    background-position: center;
}

.split.right:hover .hardcore-bg {
    opacity: 0.9;
    transform: scale(1.1);
    /* Hardcore fire/dark vibe */
    background: radial-gradient(circle at center, rgba(230, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0) 100%),
                url('../assets/images/hardcore.png');
    background-size: cover;
    background-position: center center;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    .split {
        width: 100%;
        height: 50%;
    }
    .split-container:hover .split {
        width: 100%;
        height: 45%;
    }
    .split-container .split:hover {
        width: 100%;
        height: 55%;
    }
    .split h2 {
        font-size: 2.5rem;
    }
}
