@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --brand-yellow: #F6E449;
    --brand-gold: #C29854;
    --brand-orange: #FF8627;
    --dark-mystic: #0a0a0c;
    --deep-purple: #1a0b2e;
    --tarot-gold: radial-gradient(circle, #fde08d 0%, #c4962c 100%);
    --glow-color: rgba(246, 228, 73, 0.5);
}

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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: var(--dark-mystic);
    background-attachment: fixed;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(50, 0, 100, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 50, 0, 0.3) 0%, transparent 50%);
    /* Hide scrollbar while keeping scroll functionality */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.main-wrapper {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    -webkit-overflow-scrolling: touch;
}

.nebula {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.nebula-1 {
    background: radial-gradient(circle at center, #2e106544 0%, transparent 60%);
    mix-blend-mode: screen;
}

.nebula-2 {
    background: radial-gradient(circle at center, #78350f33 0%, transparent 60%);
    mix-blend-mode: screen;
}

.content-container {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.main-logo {
    height: 100px;
    filter: drop-shadow(0 0 20px var(--glow-color));
}

.logo-area {
    margin-bottom: 1rem;
}

.coming-soon-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    padding-bottom: 0.1em;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #F6E449 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 1rem auto 2rem auto;
    font-weight: 300;
    line-height: 1.3;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0 2rem 0;
    perspective: 1000px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    opacity: 0.6;
}

.timer-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 15px rgba(246, 228, 73, 0.3);
}

.timer-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Generic Section Styling */
.section-wrapper {
    padding-top: 4rem;
    position: relative;
    z-index: 10;
    will-change: transform;
    transform: translateZ(0);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #F6E449 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Expert Sages Section */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.expert-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-yellow);
    box-shadow: 0 10px 30px rgba(246, 228, 73, 0.1);
}

.expert-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    padding: 5px;
    position: relative;
}

.expert-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.expert-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--brand-yellow);
    color: var(--dark-mystic);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-row {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0 3rem 0;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(246, 228, 73, 0.1);
    font-size: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(50, 0, 100, 0.3) 0%, rgba(100, 50, 0, 0.2) 100%);
    border-radius: 30px;
    margin: 4rem 1rem;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    outline: none;
}

.newsletter-form button {
    background: var(--brand-yellow);
    color: var(--dark-mystic);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(246, 228, 73, 0.4);
}

/* Footer Styling */
footer {
    padding: 0 2rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--brand-yellow);
}

/* Tarot Flip Card System */
.tarot-card {
    height: 380px;
    background-color: transparent;
    perspective: 1500px;
    cursor: pointer;
}

.tarot-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: rotateY(180deg);
    border-radius: 24px;
}

.tarot-front,
.tarot-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.tarot-front {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tarot-back {
    background: var(--dark-mystic);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(246, 228, 73, 0.05) 0%, transparent 70%),
        url('https://www.transparenttextures.com/patterns/dark-matter.png');
    border: 2px solid var(--brand-gold);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(194, 152, 84, 0.2);
}

.tarot-pattern {
    width: 85%;
    height: 90%;
    border: 1px solid rgba(246, 228, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-yellow);
    font-size: 3.5rem;
    position: relative;
}

.tarot-pattern::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(246, 228, 73, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(246, 228, 73, 0.3));
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand-yellow);
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Stars Animation */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px white;
}

/* Mouse Trail */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 228, 73, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large tablets & small desktops */
@media (max-width: 1200px) {
    .coming-soon-title {
        font-size: 3.5rem;
    }

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

    .tarot-card {
        height: 350px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .content-container {
        padding: 1rem 1.5rem;
    }

    .main-logo {
        height: 70px;
    }

    .logo-area {
        margin-bottom: 0.5rem;
    }

    .coming-soon-title {
        font-size: 3rem;
    }

    .coming-soon-desc {
        font-size: 0.95rem;
        max-width: 500px;
    }

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

    .tarot-card {
        height: 320px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .service-text {
        font-size: 0.85rem;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
    }
}

/* Small tablets & large phones (landscape) */
@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .main-logo {
        height: 60px;
    }

    .logo-area {
        margin-bottom: 0.25rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .coming-soon-desc {
        font-size: 0.9rem;
        max-width: 100%;
        margin: 0.75rem auto 1.5rem auto;
    }

    .countdown-container {
        gap: 0.5rem;
        margin: 0.75rem 0 1.5rem 0;
    }

    .timer-box {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
        border-radius: 10px;
    }

    .timer-num {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.75rem;
    }

    /* Service cards: 2 per row on tablet */
    .services-grid .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tarot-card {
        height: 300px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .service-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .tarot-front {
        padding: 1.25rem;
    }

    .section-wrapper {
        padding-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .testimonials-row {
        gap: 1rem;
        padding: 0.5rem 0 2rem 0;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section {
        margin: 2rem 0.5rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    footer {
        padding: 0 1rem;
    }

    .footer-logo {
        height: 40px;
        margin-bottom: 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    .cursor-glow {
        display: none;
    }
}

/* Phones */
@media (max-width: 576px) {
    .content-container {
        padding: 1rem 0.75rem;
        padding-top: 1.5rem;
    }

    .main-logo {
        height: 50px;
    }

    .logo-area {
        margin-bottom: 0;
    }

    .coming-soon-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .coming-soon-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0.5rem auto 1rem auto;
        padding: 0 0.5rem;
    }

    .countdown-container {
        gap: 0.4rem;
        margin: 0.5rem 0 1rem 0;
    }

    .timer-box {
        min-width: 60px;
        padding: 0.6rem 0.4rem;
        border-radius: 8px;
    }

    .timer-num {
        font-size: 1.3rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }

    /* Service cards: 2 per row on phones */
    .services-grid .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .services-grid.row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .tarot-card {
        height: 260px;
    }

    .tarot-front {
        padding: 1rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .service-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .tarot-pattern i {
        font-size: 2.5rem;
    }

    .section-wrapper {
        padding-top: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .testimonials-row {
        gap: 0.75rem;
        padding: 0.5rem 0 1.5rem 0;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 1.25rem;
        border-radius: 16px;
    }

    .quote-icon {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .newsletter-section {
        margin: 1.5rem 0;
        padding: 2rem 1rem;
        border-radius: 16px;
    }

    footer {
        padding: 0 0.75rem;
    }

    .footer-logo {
        height: 35px;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 1.25rem;
        margin-bottom: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .coming-soon-title {
        font-size: 1.75rem;
    }

    .coming-soon-desc {
        font-size: 0.8rem;
    }

    .countdown-container {
        gap: 0.3rem;
    }

    .timer-box {
        min-width: 52px;
        padding: 0.5rem 0.3rem;
    }

    .timer-num {
        font-size: 1.1rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }

    .tarot-card {
        height: 230px;
    }

    .tarot-front {
        padding: 0.75rem;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.4rem;
    }

    .service-title {
        font-size: 0.9rem;
    }

    .service-text {
        font-size: 0.7rem;
    }

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

    .testimonial-card {
        min-width: 240px;
    }
}