:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8222;
    --black: #0B0C10;
    --dark-gray: #1F2833;
    --white: #F8F8F8;
    --text-muted: #C5C6C7;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.text-dark { color: var(--black); }

h1, h2, h3, h4, .quote {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Typography elements */
.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-dark {
    background-color: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-dark:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--gold);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.8), rgba(11, 12, 16, 1)),
                url('astrologo-emmnauel.jpg') no-repeat center center/cover;
    text-align: center;
}

/* Since the image is of the author, we'll try to use a generic dark gradient for the hero if it looks better, but we let it blend */

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(11,12,16,0.3) 0%, rgba(11,12,16,1) 100%);
    z-index: 1;
}

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

.subtitle {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.dark {
    background-color: var(--black);
}

.gold-bg {
    background-color: var(--gold);
    color: var(--black);
}

.pattern-overlay {
    background-image: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

/* Author Section */
.author-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.author-image-wrapper {
    flex: 1 1 300px;
    position: relative;
}

.author-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: 15px; bottom: 15px;
    border: 1px solid var(--gold);
    z-index: 0;
}

.author-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(20%) contrast(110%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.author-info {
    flex: 2 1 400px;
}

.author-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
}

.quote {
    font-size: 1.8rem;
    color: var(--gold-light);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
    line-height: 1.4;
}

/* Course Details */
.course-header {
    text-align: center;
    margin-bottom: 3rem;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    flex: 2 1 300px;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.download-box {
    margin-top: 2.5rem;
    padding: 2rem;
    border: 1px dashed var(--gold-dark);
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
}

.download-box h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.download-box p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    flex: 1 1 300px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 200;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 0;
}

.price-sub {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.pricing-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Testimonials */
.relative { position: relative; }

.testimonials-slider {
    margin: 3rem auto;
    overflow: hidden;
    max-width: 800px;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.test-text {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test-author {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.test-prof {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black), #1a150b);
    padding: 6rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.title-large {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #666;
}

.footer-note {
    margin-top: 0.5rem;
    font-style: italic;
}

/* Animations */
.reveal-up, .reveal-left, .reveal-right, .fade-in {
    opacity: 0;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.anim-active {
    opacity: 1;
    transform: translate(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .title { font-size: 2.3rem; }
    .subtitle { font-size: 1rem; }
    .quote { font-size: 1.4rem; padding-left: 1rem; }
    .section-title { font-size: 2rem; }
    .title-large { font-size: 2.2rem; }
    .card { padding: 2rem; }
    .section { padding: 4rem 0; }
    .author-image-wrapper::before { display: none; }
    .author-layout { gap: 2rem; }
}
