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

:root {
    --purple-900: #1a0a2e;
    --purple-800: #2d1b4e;
    --purple-700: #3d2066;
    --purple-600: #4a2c7a;
    --purple-500: #6b3fa0;
    --purple-400: #8b5fbf;
    --purple-300: #a87fd9;
    --gold-100: #fff8e7;
    --gold-200: #ffe4a0;
    --gold-300: #ffd700;
    --gold-400: #d4af37;
    --gold-500: #b8860b;
    --white: #ffffff;
    --gray-100: #f8f8fc;
    --gray-200: #e8e8f0;
    --gray-300: #c8c8d8;
    --gray-400: #a8a8b8;
    --gray-500: #7878a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--purple-900) 0%, #0f0618 100%);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.stars-bg {
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--gold-300), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--white), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--gold-300), transparent),
        radial-gradient(1px 1px at 160px 120px, var(--white), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 250px 100px, var(--white), transparent),
        radial-gradient(2px 2px at 300px 50px, var(--gold-300), transparent),
        radial-gradient(1px 1px at 350px 90px, var(--white), transparent),
        radial-gradient(2px 2px at 400px 70px, rgba(255, 215, 0, 0.7), transparent);
    background-size: 450px 150px;
    animation: twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.shooting-stars {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
    animation: shooting 8s ease-in-out infinite;
    opacity: 0;
}

.shooting-star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.shooting-star:nth-child(2) { top: 30%; left: 50%; animation-delay: 3s; }
.shooting-star:nth-child(3) { top: 60%; left: 30%; animation-delay: 6s; }

@keyframes shooting {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    5% { opacity: 1; }
    20% { transform: translateX(300px) translateY(200px); opacity: 0; }
    100% { opacity: 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gold-300);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.btn-book {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--purple-900);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold-300);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
}

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

.moon-phase {
    margin-bottom: 24px;
}

.moon {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, var(--gray-100) 50%, #333 50%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.moon-shadow {
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--purple-900);
    border-radius: 50% 0 0 50%;
    animation: moonPhase 20s ease-in-out infinite;
}

@keyframes moonPhase {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(100%); }
}

.hero-tagline {
    display: block;
    color: var(--gold-300);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--purple-900);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold-300);
    border: 2px solid var(--gold-400);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.btn-card {
    background: transparent;
    color: var(--gold-300);
    border: 1px solid var(--gold-400);
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-card:hover {
    background: var(--gold-400);
    color: var(--purple-900);
}

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

.zodiac-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    opacity: 0.1;
}

.wheel-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.wheel-ring.outer {
    border: 1px solid var(--gold-400);
    animation: rotate 60s linear infinite;
}

.wheel-ring.outer span {
    position: absolute;
    font-size: 1.5rem;
}

.wheel-ring.inner {
    border: 1px solid var(--gold-400);
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
}

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

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    color: var(--gold-300);
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--gray-400);
    font-size: 1rem;
}

.readings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reading-card {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.reading-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-400);
}

.reading-card:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reading-card.featured {
    border-color: var(--gold-400);
    background: rgba(61, 32, 102, 0.6);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--purple-900);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-300);
}

.reading-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold-200);
}

.reading-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    font-weight: 300;
}

.card-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.duration {
    color: var(--gray-500);
}

.price {
    color: var(--gold-300);
    font-weight: 600;
}

.zodiac {
    background: rgba(15, 6, 24, 0.5);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.zodiac-card {
    background: rgba(45, 27, 78, 0.4);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
}

.zodiac-symbol {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.zodiac-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--gold-200);
    margin-bottom: 4px;
}

.dates {
    font-size: 0.75rem;
    color: var(--gold-400);
    display: block;
    margin-bottom: 8px;
}

.zodiac-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 300;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.crystal-ball {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(107, 63, 160, 0.5) 50%, rgba(45, 27, 78, 0.8) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.ball-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.mystical-elements {
    position: absolute;
    inset: 0;
}

.element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--gold-300);
    animation: twinkle 2s ease-in-out infinite;
}

.element:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.element:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.element:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 1s; }

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-400);
    margin-bottom: 32px;
    font-weight: 300;
}

.credentials {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold-300);
    font-weight: 600;
}

.credential-text {
    font-size: 0.85rem;
    color: var(--gray-500);
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold-200);
    padding-left: 24px;
    border-left: 2px solid var(--gold-400);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(45, 27, 78, 0.4);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stars {
    color: var(--gold-300);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
}

.author-sign {
    font-size: 0.8rem;
    color: var(--gold-400);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--gray-400);
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
}

.detail-icon {
    font-size: 1.25rem;
}

.contact-form {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-200);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 10, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--gray-100);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-400);
}

.form-group textarea {
    resize: none;
}

.footer {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links h4 {
    color: var(--gold-200);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.75rem !important;
    font-style: italic;
}

@media (max-width: 1024px) {
    .readings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-book {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .readings-grid {
        grid-template-columns: 1fr;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .credentials {
        flex-wrap: wrap;
    }

    .zodiac-wheel {
        display: none;
    }
}