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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #e8d5b7;
    overflow-x: hidden;
}

.booking-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}
.booking-button:hover {
    background-color: #45a049;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.booking-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 900px;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}

.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

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

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

header {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(20, 20, 40, 0.9));
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.header-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    opacity: 1;
    z-index: 15;
}

.tarot-card {
    position: absolute;
    width: 50px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #c9b037);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #1a1a2e;
    animation: gentleFloat 8s ease-in-out infinite;
}

.tarot-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(45deg, #f8f4e6, #f0e8d0);
    border-radius: 3px;
    z-index: -1;
}

.tarot-card-1 {
    top: 80%;
    left: 15%;
    animation-delay: 0s;
    transform: rotate(-12deg);
}

.tarot-card-2 {
    bottom: 5%;
    left: 25%;
    animation-delay: 2s;
    transform: rotate(18deg);
}

.tarot-card-3 {
    top: 85%;
    right: 15%;
    animation-delay: 4s;
    transform: rotate(-20deg);
}

.tarot-card-4 {
    bottom: -5%;
    right: 25%;
    animation-delay: 6s;
    transform: rotate(15deg);
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation));
    }
}

.tarot-card-1 {
    --rotation: -12deg;
}

.tarot-card-2 {
    --rotation: 18deg;
}

.tarot-card-3 {
    --rotation: -20deg;
}

.tarot-card-4 {
    --rotation: 15deg;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
}

.logo {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo .accent {
    color: #d4af37;
    display: inline-block;
    margin: 0 8px;
}

.subtitle {
    font-size: 1.3rem;
    color: #e8d5b7;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: #d0c4a8;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #c9b037);
    color: #1a1a2e;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

nav {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #e8d5b7;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: #d4af37;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #e8d5b7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-button {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e8d5b7;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.language-button:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    margin-top: 5px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.language-option:hover {
    background: rgba(212, 175, 55, 0.1);
}

.language-option.active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section h2::after {
    content: '✨';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    font-size: 1.5rem;
}

#pricing {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.price-tag {
    font-size: 3rem;
    color: #d4af37;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.price-details {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #c9b037);
    color: #1a1a2e;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #d4af37;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-top: 15px;
    color: #c9b037;
    font-style: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.service-card h3 {
    color: #c9b037;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #c9b037);
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #e6c757, #d4af37);
}

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

.stella-photo {
    width: 100%;
    max-width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #d4af37, #c9b037);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #1a1a2e;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #e8d5b7;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn {
    background: linear-gradient(45deg, #d4af37, #c9b037);
    color: #1a1a2e;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #e8d5b7;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
}

.pricing-section {
    margin-top: 50px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #d4af37, #c9b037);
    color: #1a1a2e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.pricing-duration {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e8d5b7;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-description {
    color: #c9b037;
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        margin: 0 15px;
        padding: 30px 20px;
    }

    header {
        padding: 60px 0;
        min-height: 50vh;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .language-selector {
        position: relative;
    }

    .language-dropdown {
        right: 0;
        left: auto;
    }

    .tarot-card {
        width: 35px;
        height: 55px;
        font-size: 0.6rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-amount {
        font-size: 2rem;
    }

}
