﻿/* BASE */
body {
    font-family: 'Montserrat', system-ui, sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

/* HERO */
.hero-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #4ac4d8, #8dd1e7); /* subtle teal → light blue */
    color: #ffffff;
    display: flex;
    flex-direction: column;
}
.navbar .nav-link {
    color: white !important;
    font-weight: 600;
}

    .navbar .nav-link:hover {
        color: purple !important;
    }
.hero-wrapper .navbar {
    padding: 1rem 0;
}

/* MOBILE NAV FIX */
@media (max-width: 991px) {

    /* Dropdown container */
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    /* Align menu to the right */
    .navbar-nav {
        align-items: flex-end;
        text-align: right;
    }

    /* Links styling */
    .navbar .nav-link {
        color: #8a4ecb !important; /* purple text */
        padding: 10px 0;
    }

        .navbar .nav-link:hover {
            color: #5e2ca5 !important; /* darker purple */
        }

    /* Dropdown menu (My Account) */
    .dropdown-menu {
        background: white;
        border: none;
        text-align: right;
    }

    .dropdown-item {
        color: #8a4ecb;
    }

        .dropdown-item:hover {
            background: #f5f0ff;
            color: #5e2ca5;
        }
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; /* center horizontally */
    text-align: center;
    padding: 0 1rem; /* horizontal padding on mobile */
}

    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        font-family: 'Montserrat', system-ui, sans-serif;
    }

    .hero-content p {
        max-width: 620px;
        margin: 1rem auto 2rem;
        opacity: 0.95;
        font-size: 1.25rem;
        font-family: 'Montserrat', system-ui, sans-serif;
    }
    .hero-content .btn {
        margin-top: 20px;
        margin-bottom: 60px;
    }
/* SECTIONS */
.section {
    padding: 4rem 1rem;
}

    .section h2 {
        font-family: 'Montserrat', system-ui, sans-serif;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

.bg-soft {
    background: #f9fafa;
}

/* BUTTONS */
.btn-gradient {
    background: linear-gradient(135deg, #1fb7b1, #8a4ecb);
    border: none;
    color: #ffffff;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-decoration:none;
}

    .btn-gradient:hover {
        opacity: 0.9;
        color: #ffffff;
    }

/* DESIGN PLACEHOLDER IMAGE */
/* DESIGN PLACEHOLDER IMAGE */
/*.design-placeholder {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .design-placeholder img.placeholder-img {
        width: 100%;
        height: auto;*/ /* IMPORTANT */
        /*max-height: 520px;
        object-fit: contain;*/ /* keeps full bodygraph visible */
    /*}*/
.design-placeholder {
    width: 100%;
    max-width: 500px; /* control overall size */
    margin: 0 auto;
}

    .design-placeholder .placeholder-video {
        width: 100%;
        height: auto;
        max-height: 420px; /* 🔥 prevents it from being too tall */
        border-radius: 16px;
        object-fit: cover; /* looks modern */
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* FORM */
.form-control {
    border-radius: 12px;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: 'Montserrat', system-ui, sans-serif;
}

/* FOOTER */
.site-footer {
    padding: 1rem 1rem;
    border-top: 1px solid #eee;
    background: #ffffff;
}

/* TABLETS (992px and below) */
@media (max-width: 992px) {
    .design-placeholder {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-gradient {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* MOBILE (576px and below) */
@media (max-width: 576px) {
    .hero-wrapper {
        min-height: 50vh;
    }
        .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .design-placeholder {
        max-width: 100%;
        padding: 0; /* REMOVE padding */
        margin: 0 auto;
    }

        .design-placeholder img.placeholder-img {
            width: 100%; /* FULL WIDTH */
            height: auto; /* KEEP ASPECT RATIO */
            max-height: 460px; /* BIG but safe */
            object-fit: contain; /* SHOW FULL BODYGRAPH */
        }

    .btn-gradient {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        text-decoration:none;
    }

    .section {
        padding: 2.5rem 1rem;
    }
}
/* PRICING HERO */
.pricing-hero {
    background: linear-gradient(135deg, #4ac4d8, #8dd1e7);
    color: #ffffff;
    padding: 5rem 1rem;
    text-align: center;
}

    .pricing-hero h1 {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .pricing-hero p {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.15rem;
        opacity: 0.95;
    }

/* PRICE CARD */
.price-card {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #1fb7b1;
}

    .price-tag .currency {
        font-size: 1.5rem;
        vertical-align: super;
    }

.price-note {
    color: #777;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* FEATURE LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

    .feature-list li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
        line-height: 1.4;
    }

/* INFO IMAGES */
.info-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #000;
}
/* TABLETS */
@media (max-width: 992px) {
    .pricing-hero {
        padding: 4rem 1rem;
    }

        .pricing-hero h1 {
            font-size: 2.3rem;
        }

        .pricing-hero p {
            font-size: 1.05rem;
        }
}

/* MOBILE */
/* MOBILE (576px and below) */
@media (max-width: 576px) {

    /* HERO TEXT */
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* PRICE CARD */
    .price-card {
        max-width: 100%;
        padding: 2rem 1.3rem; /* breathing room */
        margin: 0 auto;
        border-radius: 20px;
    }

    .price-tag {
        font-size: 2.8rem;
        margin: 1rem 0;
    }

        .price-tag .currency {
            font-size: 1.2rem;
            vertical-align: super;
        }

    /* FEATURE LIST */
    .feature-list li {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* INFO IMAGES */
    .info-image {
        width: 100%; /* FULL WIDTH */
        height: auto; /* KEEP ASPECT */
        max-height: 420px; /* BIG but safe */
        object-fit: contain;
        margin: 0 auto;
    }

    /* SECTION SPACING */
    .section {
        padding: 2.5rem 1rem;
    }
    .info-video {
        max-height: 420px;
        object-fit: contain;
    }
}
.container-reading {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0 20px; /* space from screen edges */
}

/* TOPIC CARD */
.topic-card {
    max-width: 1000px; /* control reading width */
    margin: 0 auto; /* centers the card */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background: white;
}

/* TITLE */
.topic-title {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* ITEMS */
.topic-item {
    margin-bottom: 25px;
}

.topic-sub {
    font-size: 18px;
    font-weight: 600;
}

.topic-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* VIDEO */
.video-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

    .video-wrapper video {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 10px;
    }
.video-intro {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

    .video-intro video {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 10px;
    }

/* TABLETS */
@media (max-width: 992px) {

    .topic-card {
        max-width: 90%;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .container-reading {
        padding: 0 10px;
    }

    .topic-card {
        max-width: 100%;
        padding: 20px;
    }

    .topic-title {
        font-size: 20px;
    }

    .topic-sub {
        font-size: 16px;
    }

    .topic-desc {
        font-size: 13px;
    }
}
.btn-download-pdf {
    background: linear-gradient(135deg,#7b2cbf,#9d4edd);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .btn-download-pdf i {
        margin-right: 8px;
    }

    .btn-download-pdf:hover {
        background: #ffd700;
        color: black;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
/* CANCEL CARD */

.cancel-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cancel-icon {
    font-size: 70px;
    color: #e63946;
    margin-bottom: 20px;
    animation: pop 0.5s ease;
}

.cancel-title {
    font-size: 32px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 15px;
}

.cancel-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.cancel-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.cancel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home {
    background: #eee;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

    .btn-home:hover {
        background: #ddd;
    }

/* animation */
@keyframes pop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* TABLETS (992px and below) */
@media (max-width: 992px) {

    .cancel-card {
        padding: 35px 25px;
        max-width: 520px;
    }

    .cancel-title {
        font-size: 28px;
    }

    .cancel-icon {
        font-size: 60px;
    }

    .cancel-text {
        font-size: 15px;
    }

    .cancel-sub {
        font-size: 13px;
    }
}


/* MOBILE (576px and below) */
@media (max-width: 576px) {

    .cancel-card {
        padding: 25px 18px;
        border-radius: 16px;
        max-width: 95%;
    }

    .cancel-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .cancel-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cancel-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .cancel-sub {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cancel-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-home,
    .btn-gradient {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }
}

/* COFFEE CARD */

.coffee-card {
    background: white;
    padding: 22px 18px; /* ↓ smaller */
    border-radius: 14px;
    max-width: 2000px; /* ↓ smaller */
    margin: auto;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.coffee-icon {
    font-size: 20px; /* ↓ smaller */
    color: #8a4ecb;
    margin-bottom: 6px;
}

.coffee-title {
    font-size: 3px; /* ↓ smaller */
    color: #666;
    margin-bottom: 3px;
}

.coffee-text {
    font-size: 5px;
    color: #444;
}

.coffee-sub {
    font-size: 7px;
    color: #666;
    margin-bottom: 15px;
}

.coffee-input {
    margin-bottom: 12px;
}

.coffee-btn {
    width: 100%;
    margin-top: 6px;
    padding: 8px; /* slightly tighter button */
}

.secure-payment {
    margin-top: 14px;
    font-size: 11px;
    color: #777;
}

    .secure-payment img {
        margin-bottom: 5px;
        height: 22px; /* slightly smaller image */
    }

/* MOBILE */
@media (max-width:576px) {

    .coffee-card {
        padding: 18px 12px;
        max-width: 95%;
    }

    .coffee-title {
        font-size: 18px;
    }

    .coffee-icon {
        font-size: 34px;
    }
}
/* CHART CARDS */

.chart-card {
    padding: 25px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.chart-ref {
    font-size: 18px;
    font-weight: 600;
}

/* chart rows */

.chart-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.chart-label {
    font-weight: 600;
    color: #666;
}

.chart-value {
    color: #333;
}

/* mobile */

@media(max-width:576px) {

    .chart-ref {
        font-size: 16px;
    }

    .chart-row {
        font-size: 14px;
    }
}
.edit-title-icon {
    font-size: 12px;
    margin-left: 8px;
    cursor: pointer;
    color: #8a4ecb;
    opacity: 0.8;
    transition: 0.2s;
}

    .edit-title-icon:hover {
        opacity: 1;
        transform: scale(1.1);
    }
/* SECTION BACKGROUND */
.premium-steps {
    background: linear-gradient(135deg, #0B1F3A, #122B50);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.premium-subtitle {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.premium-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

    /* HOVER EFFECT */
    .premium-card:hover {
        transform: translateY(-8px) scale(1.02);
        border: 1px solid #F9A826;
        box-shadow: 0 0 25px rgba(249,168,38,0.3);
    }

/* ICON */
.premium-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

/* STEP LABEL */
.premium-step {
    font-size: 12px;
    letter-spacing: 2px;
    color: #F9A826;
    margin-bottom: 10px;
}

/* TEXT */
.premium-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/* HIGHLIGHT CARD (Payment) */
.premium-card.highlight:hover {
    border: 1px solid #F9A826;
    box-shadow: 0 0 25px rgba(249,168,38,0.3);
}


     a:hover {
        transform: scale(1.2);
    }

        a:hover .fa-facebook {
            color: #1877F2;
        }

        a:hover .fa-youtube {
            color: #FF0000;
        }

         a:hover .fa-tiktok {
            color: #000000;
        }
.design-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 40px 20px; /* extra space at bottom */
    overflow: auto;
    min-height: 500px;
}

    .design-placeholder svg {
        width: 100%;
        max-width: 400px;
        max-height: 700px; /* prevents excessive height */
        height: auto;
        display: block;
        margin: 0 auto 30px auto; /* bottom spacing */
    }
/* Small phones */
@media (max-width: 480px) {
    .design-placeholder {
        padding: 10px 10px 30px;
    }

        .design-placeholder svg {
            max-width: 280px;
            width: 100%;
            margin-bottom: 20px;
        }
}

/* Very small phones */
@media (max-width: 360px) {
    .design-placeholder {
        padding: 5px 5px 20px;
    }

        .design-placeholder svg {
            max-width: 240px;
            width: 100%;
        }
}
.bodygraph-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch; /* 🔥 equal height columns */
    gap: 30px;
    margin-top: 30px;
    flex-wrap: nowrap; /* keep 3 columns on desktop */
}

/* ========================= */
/* LEFT COLUMN (DESIGN)
/* ========================= */
.design-column {
    width: 200px;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
}

    .design-column .planet-row {
        background: #E4B54B;
        color: #ffffff;
    }
/* ========================= */
/* CENTER COLUMN (CHART)
/* ========================= */
.chart-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-width: 0; /* prevents flex overflow issues */
}

/* SVG CONTROL */
.design-placeholder svg {
    width: 100%;
    max-width: 600px;
    max-height: 600px; /* 🔥 controls height */
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========================= */
/* RIGHT COLUMN (PERSONALITY)
/* ========================= */
.personality-column {
    width: 200px;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
}

/* ========================= */
/* ROW STYLING
/* ========================= */
.planet-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 6px;
    background: #e5e5e5;
    font-size: 13px;
}

.personality-column .planet-row {
    background: #654422;
    color: white;
}

/* HEADERS */
.design-column h4,
.personality-column h4 {
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {

    .bodygraph-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }

    /* SIDE COLUMNS */
    .design-column,
    .personality-column {
        flex: 0 0 45%;
        width: 45%;
        max-width: 180px;
    }

    /* CENTER COLUMN ALWAYS FULL WIDTH BELOW */
    .chart-column {
        flex: 0 0 100%;
        width: 100%;
        order: -1; /* puts chart on top */
        margin-bottom: 20px;
    }
    .design-placeholder {
        width: 100%;
        text-align: center;
        overflow: visible;
        margin-top: 30px; /* adjust as needed */
    }

        .design-placeholder svg {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: none; /* remove height restriction */
            background: white;
            display: block;
            margin: 0 auto;
            padding: 10px;
        }
    /* SVG CONTROL */
    /*.design-placeholder svg {
        width: 100%;
        background:white;
        max-width: 500px;
        max-height: 750px;
        height: auto;
    }*/
}
/* make sure dropdown is visible above modal content */
#readingModal .list-group {
    z-index: 2000;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
}

/* ensure parent allows proper positioning */
#readingModal .position-relative {
    position: relative;
}