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

:root {
    --primary-purple: #6b3fa0;
    --deep-purple: #2d1b4e;
    --mystical-purple: #9d4edd;
    --gold: #d4af37;
    --light-gold: #f4d03f;
    --cream: #f5f0e8;
    --dark: #0a0a0f;
    --text-light: #e8e4f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mystical-purple), transparent);
    opacity: 0.15;
    animation: float var(--float-duration) ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-15px) translateX(-15px); }
    75% { transform: translateY(-40px) translateX(10px); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.logo-text {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.5rem;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(ellipse at center, var(--deep-purple) 0%, var(--dark) 70%);
}

.hero-content {
    z-index: 1;
}

.mystical-symbol {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold); }
    50% { text-shadow: 0 0 40px var(--gold), 0 0 80px var(--gold), 0 0 120px var(--gold); }
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cream), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--mystical-purple);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--mystical-purple));
    color: var(--cream);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--gold);
}

section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cream), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.about {
    background: linear-gradient(180deg, var(--dark), var(--deep-purple));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(45, 27, 78, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--gold), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    opacity: 0.9;
}

.tarot-showcase {
    background: var(--dark);
}

.tarot-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.tarot-card {
    width: 200px;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarot-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front {
    background: linear-gradient(145deg, var(--deep-purple), var(--primary-purple));
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.4);
}

.card-design {
    font-size: 4rem;
    color: var(--gold);
    animation: rotateSymbol 4s linear infinite;
}

@keyframes rotateSymbol {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-back {
    background: linear-gradient(145deg, var(--primary-purple), var(--mystical-purple));
    transform: rotateY(180deg);
    padding: 1.5rem;
    text-align: center;
}

.card-back h4 {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-back p {
    color: var(--cream);
    font-size: 1rem;
}

.pricing {
    background: linear-gradient(180deg, var(--deep-purple), var(--dark));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

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

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: var(--text-light);
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check {
    color: var(--gold);
    font-weight: bold;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--mystical-purple));
    color: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.pricing-button:hover {
    background: linear-gradient(135deg, var(--mystical-purple), var(--primary-purple));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.featured-button {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
}

.featured-button:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.testimonials {
    background: var(--dark);
    padding: 6rem 5%;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold);
    font-size: 1.1rem;
}

.contact {
    background: linear-gradient(180deg, var(--dark), var(--deep-purple));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(45, 27, 78, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 10px;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--deep-purple);
    color: var(--cream);
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel Decorative', cursive;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    color: var(--gold);
}

.info-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.footer {
    background: rgba(10, 10, 15, 0.95);
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer .logo-icon {
    font-size: 2.5rem;
}

.footer .logo-text {
    font-size: 2rem;
}

.footer-text {
    color: var(--text-light);
    opacity: 0.7;
    margin: 1.5rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 0.9rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
