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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --purple-main: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;
    --purple-glow: rgba(139, 92, 246, 0.3);
    --text-light: #f3f4f6;
    --text-gray: #d1d5db;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 80px;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.nav-menu a:hover {
    color: var(--purple-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}


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

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px var(--purple-glow);
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--purple-glow) 0%, transparent 70%);
    pointer-events: none;
}

.crystal-ball {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(107, 33, 168, 0.2));
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.crystal-ball-1 {
    top: 10%;
    left: 10%;
}

.crystal-ball-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

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

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-section {
    background: rgba(109, 40, 217, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-timer {
    text-align: center;
    margin-bottom: 30px;
}

.timer-display {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.timer-label {
    color: var(--text-gray);
    font-size: 14px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-form input {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 20px;
    font-size: 16px;
    color: var(--bg-dark);
    width: 100%;
}

.cta-form input::placeholder {
    color: #9ca3af;
}

.cta-form button {
    background: var(--purple-main);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-form button:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--purple-glow);
}

.cta-text {
    text-align: center;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.6;
}

.section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tarot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tarot-card {
    background: rgba(109, 40, 217, 0.15);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.tarot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--purple-glow);
    border-color: var(--purple-main);
}

.tarot-card-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tarot-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.tarot-card:hover .tarot-card-image img {
    transform: scale(1.05);
}

.tarot-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--purple-light);
    text-transform: uppercase;
}

.tarot-card-category {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.tarot-card-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background: var(--purple-main);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 15px;
}

.service-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--purple-glow);
}

.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px var(--purple-glow);
    object-fit: cover;
}

.about-text {
    flex: 1;
}

footer {
    background: var(--bg-darker);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--purple-light);
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--purple-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-gray);
    font-size: 14px;
}

.organization-info {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.organization-info p {
    margin-bottom: 5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 20px;
    z-index: 1001;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    color: var(--text-gray);
    font-size: 14px;
    flex: 1;
}

.cookie-text a {
    color: var(--purple-light);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--purple-main);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--purple-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--purple-main);
    color: var(--purple-light);
}

.contact-section {
    padding: 100px 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(109, 40, 217, 0.15);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--bg-dark);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--purple-main);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.contact-form button:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--purple-glow);
}

.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.legal-page {
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--purple-light);
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(139, 92, 246, 0.3);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        width: 100%;
    }

    .nav-menu a:hover {
        padding-left: 10px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .tarot-cards {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .timer-display {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }

    .map-container iframe {
        height: 300px;
    }

    .about-content-wrapper {
        flex-direction: column;
    }

    .about-image {
        flex: 1;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .service-detail-wrapper {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        max-width: 100%;
        margin-bottom: 30px;
    }
.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header .section-title {
    margin-bottom: 0.5rem;
}


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