/* Shifting Paradigms Main Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Source+Sans+3:wght@400;500&family=Montserrat:wght@300;400;500;700&family=Dancing+Script:wght@400;700&display=swap');

/* Import Animation Styles */
@import url('animations.css');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #e8e8e8;
    background-color: #0a0a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

a {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #d4af37;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.accent-text {
    color: #d4af37;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #ffd700;
    border: 2px solid #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

/* Logo in header (courses, about, forum, etc.) – very small, never block content */
header .logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 4px;
    padding: 2px 5px;
    background: rgba(10, 10, 26, 0.9);
    border-radius: 4px;
    text-decoration: none;
    max-width: 130px;
}

header .logo img {
    max-height: 18px !important;
    max-width: 44px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

header .logo .logo-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #e8e8e8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navbar with logo: logo left, menu right (courses, about, forum, etc.) */
header .navbar:has(.logo) {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

header .navbar:has(.logo) .nav-menu {
    flex-shrink: 0;
}

/* Brand Bar */
.brand-bar {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(90deg, #7b2cbf 0%, #3d2a7a 45%, #3a5a8c 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.brand-bar::before {
    content: none;
}

.brand-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    height: 78px;
    margin-right: 20px;
    filter: brightness(1.5) contrast(1.6) saturate(1.4);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.brand-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(10, 8, 24, 0.85), 0 2px 8px rgba(10, 8, 24, 0.5);
}

/* Navigation Bar */
.nav-bar {
    background: rgba(10, 10, 26, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 25px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #d4af37;
}

.auth-link {
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.auth-link:hover {
    border: 1px solid rgba(255, 215, 0, 0.8);
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cart-link {
    position: relative;
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cart-link:hover {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #d4af37;
    color: #0a0a1a;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Hero Section — sits after the intro, so do not clear the fixed header again */
.hero {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding: 36px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
}

.hero-title .accent-text {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    color: #00ffff;
    text-align: center;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styles */
.section {
    padding: 24px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 18px;
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

/* Intro Section — first block on the homepage; clear the fixed gold brand bar + nav */
.intro-section {
    padding-top: 178px;
    text-align: center;
}

.intro-section h2 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 2.25rem;
    line-height: 1.15;
}

.intro-section h2 .accent-text {
    font-size: 0.72em;
    line-height: 1;
    vertical-align: baseline;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #f4f4f4;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 0 14px rgba(0, 0, 0, 0.45);
    font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.75;
    letter-spacing: normal;
}

.intro-section p strong {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: #d4af37;
}

/* Row & Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    flex: 1;
    padding: 15px;
    min-width: 300px;
}

/* Featured Cards */
.featured-card {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.featured-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 15px;
}

.featured-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.featured-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.featured-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.featured-video {
    position: relative;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.featured-video img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.featured-video:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(156, 39, 176, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 24px;
    color: #fff;
}

.featured-video:hover .play-button {
    background: rgba(156, 39, 176, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Vlog Grid */
.vlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.vlog-card {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vlog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vlog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.vlog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vlog-card:hover .vlog-thumbnail img {
    transform: scale(1.05);
}

.vlog-content {
    padding: 20px;
}

.vlog-date {
    font-size: 0.8rem;
    color: #d4af37;
    margin-bottom: 5px;
}

.vlog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.vlog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Forum Categories */
.forum-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.forum-category {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forum-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.forum-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.forum-icon i {
    font-size: 30px;
    color: #fff;
}

.forum-category-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.forum-category-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Newsletter Box */
.newsletter-box {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.newsletter-box h2 {
    color: #d4af37;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 26, 0.6);
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer {
    background: rgba(10, 10, 26, 0.9);
    padding: 32px 0 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(1.5) contrast(1.6) saturate(1.4);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-link {
    margin-bottom: 8px;
}

.footer-link a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    opacity: 1;
    color: #d4af37;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 16px;
    color: #d4af37;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Page Header — sit clearly below the fixed gold brand bar + nav */
.page-header {
    text-align: center;
    padding: 178px 0 12px;
    background: rgba(10, 10, 26, 0.6);
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* About Page */
.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.mission-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.mission-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 24px;
    color: #fff;
}

/* Founder Profile Styles */
.founder-profile {
    max-width: 800px;
    margin: 0 auto;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.founder-photo {
    flex: 0 0 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
    min-width: 300px;
}

.founder-info h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.founder-role {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-photo {
        flex: none;
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.testimonial-content {
    position: relative;
    padding: 10px 0;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    font-family: 'Georgia', serif;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: #d4af37;
}

.testimonial-location {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info, .contact-form {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-list i {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #d4af37;
}

/* Courses Page */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 15px;
}

.course-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

/* Login & Register Pages */
.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: #d4af37;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.auth-form .form-control {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #d4af37;
}

/* Cart Page */
.cart-container {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 700;
    color: #9c27b0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.quantity-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: #f0f0f0;
    font-weight: 700;
    margin: 0 10px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: #ff1a1a;
}

.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-total-label {
    color: #d4af37;
}

.checkout-btn {
    width: 100%;
}

/* Account Page */
.account-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.account-sidebar {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu-item {
    margin-bottom: 10px;
}

.account-menu-link {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.account-menu-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.account-menu-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

.account-menu-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.account-content {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.account-section {
    margin-bottom: 30px;
}

.account-section:last-child {
    margin-bottom: 0;
}

.account-section-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Forum Page */
.forum-topics {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
}

.forum-topic {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.3s ease;
}

.forum-topic:last-child {
    border-bottom: none;
}

.forum-topic:hover {
    background: rgba(212, 175, 55, 0.05);
}

.forum-topic-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.forum-topic-icon i {
    font-size: 16px;
    color: #fff;
}

.forum-topic-content {
    flex-grow: 1;
}

.forum-topic-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.forum-topic-meta {
    display: flex;
    font-size: 0.8rem;
    opacity: 0.7;
}

.forum-topic-author {
    margin-right: 15px;
}

.forum-topic-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.8rem;
}

.forum-topic-replies {
    font-weight: 700;
    color: #d4af37;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(30, 30, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

.pagination-link.active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.guidelines-box {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.guidelines-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.guidelines-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.guidelines-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.cta-section {
    background: rgba(10, 10, 26, 0.4);
    padding: 50px 0;
}

.cta-box {
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .account-container {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 26, 0.95);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section {
        padding: 30px 0;
    }

    .page-header {
        padding-top: 195px;
    }

    .intro-section {
        padding-top: 195px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        min-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        height: auto;
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .forum-topic {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .forum-topic-icon {
        margin-bottom: 10px;
    }
    
    .forum-topic-stats {
        align-items: flex-start;
        margin-top: 10px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-bottom: 10px;
    }
    
    .cart-item-actions {
        margin-top: 10px;
    }
}

/* Hide "Made with Manus" badge (script removed from HTML; fallback if still visible) */
manus-content-root,
iframe[src*="manus"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Placeholder community / testimonial UI — visually inactive only; does not change sitewide brand */
.placeholder-inactive-label {
    display: inline-block;
    margin: 0 0 14px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a8a8a8;
    border: 1px solid rgba(168, 168, 168, 0.4);
    border-radius: 999px;
    background: rgba(16, 16, 28, 0.35);
}

.placeholder-inactive {
    opacity: 0.42;
    filter: grayscale(0.45);
    color: #9a9a9a;
    pointer-events: none;
    user-select: none;
}

.placeholder-inactive a,
.placeholder-inactive button {
    pointer-events: none;
    cursor: default;
}

.placeholder-inactive .forum-category:hover,
.placeholder-inactive .forum-topic:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.placeholder-inactive-inline {
    opacity: 0.42;
    filter: grayscale(0.45);
    color: #9a9a9a;
    pointer-events: none;
    user-select: none;
}

.placeholder-inactive-inline .placeholder-inactive-label {
    margin: 0 0 0 8px;
    vertical-align: middle;
}
