﻿/* === Global Styles === */
/* Desktop submenu: opens to the right */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.25rem;
    }

/* Mobile override: submenu opens downward 
@media (max-width: 768px) {
    .dropdown-submenu > .dropdown-menu {
        top: 0% !important;
        left: 100% !important;
        margin-top: 0 !important;
        margin-left: 0px !important;
        position: block !important;
        width: 100%; /* fills parent menu */
/*        z-index: 1050;
    }

    /* Rotate arrow for vertical submenu */
/*    .dropdown-submenu > a::after {
        transform: rotate(90deg);
        float: right;
    }
}*/
/* Other styles */

#arrow {
    transition: transform 1s ease-in-out;
    float: right;
}
#arrow:active {
    color: rgb(202, 45, 202);
    transform: scale(1.1);
}

#content {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121214;
    color: #e4d9f2;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* === Typography === */
.script-font {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #c292f0;
    user-select: none;
}

.heading-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #c8a2c8;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* === Soft Landing & Home === */
#shimmer-heading {
    position: relative;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 4.5rem);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    min-width: 0;
    background: linear-gradient(120deg, #c292f0 40%, #ffffff 50%, #c292f0 60%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: navbarShimmer 8s ease-in-out infinite;
    user-select: none;
    cursor: default;
}

/* === Navbar === */
#navbar-title {
    position: relative;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 4.5rem);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    min-width: 0;
    background: linear-gradient(120deg, #c292f0 40%, #ffffff 50%, #c292f0 60%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: navbarShimmer 8s ease-in-out infinite;
    user-select: none;
    cursor: default;
}

@keyframes navbarShimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.nav-link {
    padding-left: 10px;
}

.custom-navbar {
    background: linear-gradient(180deg, #222 0%, #111 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 580px) {
    /*body {
        margin-top: 100px !important;
    }*/
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

#logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: width 0.3s ease, height 0.3s ease;
}

@media (max-width: 575.98px) {
    #logo-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 375px) {
    #logo-img {
        width: 40px;
        height: 40px;
    }
}

.navbar-logo {
    min-width: 80px;
    transition: min-width 0.3s ease;
}

@media (max-width: 575.98px) {
    .navbar-logo {
        min-width: 50px;
    }
}

@media (max-width: 375px) {
    .navbar-logo {
        min-width: 40px;
    }
}

.profile-picture {
    width: 70%;
    height:70%;
    max-width: 650px;
    margin: 10pt;
    border-radius: 30px;
}

/*@media (max-width: 600px) {
    .custom-navbar {
        padding: 0.5rem 1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .custom-navbar nav,
    .custom-navbar ul {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .custom-navbar a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}*/
@media (max-width: 600px) {
    .custom-navbar {
        padding: 0.5rem 1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .custom-navbar a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        margin-top: 10px;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand-center {
        font-size: 1.5rem !important;
        flex-grow: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    body {
        margin-top: 50px !important;
    }
}
@media screen and (max-width: 576px) {
    .normalbody {
        margin-top: -90px !important;
    }
}
@media only screen and (max-width: 576px) {
    .testprepmargin {
        margin-top: 5px !important;
    }
}
@media only screen and (min-width: 576px) {
    .testprepmargin {
        display: block;
        margin-top: 100px !important;
    }
}

.custom-navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.dropdown-menu li a:hover {
    background-color: slategrey;
}

@media only screen and (max-width: 400px) {
    .dropdown {
        margin-left: 2%;
    }
    .custom-navbar {
        margin-left: -30px;
        margin-right: -20px;
    }
}

nav.custom-navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    /*position: relative;*/
}

.custom-navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: nowrap;
    align-items: center;
}

.btn.dropdown-toggle {
    padding: 0.25rem 0.4rem;
    font-size: 0.9rem;
}
/* === Hero Section === */
header {
    padding: 0;
    margin: 0;
}

.call-to-action {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    padding: 4rem 2rem;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 16px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

 /* Overlay shimmer animation */
    .call-to-action::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 60% );
        background-size: 200% 100%;
        animation: shimmer 16s ease-in-out infinite;
        z-index: 0;
        pointer-events: none;
        border-radius: 16px;
    }

/* Diagonal shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

    .call-to-action p {
        position: relative; 
        max-width: 900px;
        margin: 0 auto;
        z-index: 1;
    }
.call-to-action-wrapper {
    position: relative;
    max-width: 1300px; 
    margin: 0 auto 3rem auto;
}

.side-image {
    position: absolute;
    top: 50%;
    width: 280px;
    height: auto;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 2;
}

    .side-image.left {
        left: -150px; 
    }

    .side-image.right {
        right: -150px; 
    }

@media (max-width: 1269px) { /*heart icon on top*/
    .call-to-action-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .side-image {
        position: relative; 
        width: 100px;
        height: auto;
        margin: 1rem auto 2rem auto; /*top right bottom left*/
        display: block;
    }
        .side-image.left {
            margin-left: auto !important;
            margin-right: auto !important;
            display: block !important;
            position: relative !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
            align-self: center !important;
            float: none !important;
            text-align: center !important;
            width: 150px; 
            height: auto;
        }

        /* Hide the right image (bottom heart) on mobile */
        .side-image.right {
            display: none !important;
        }

    .call-to-action {
        max-width: 90%;
        padding: 2rem 1rem;
        font-size: 1rem;
        margin: 0 auto;
        z-index: 1;
        position: relative;
    }

        .call-to-action p {
            max-width: 100%;
        }
}

/* === Responsive Grid Containers === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* === Why Choose Me Section === */
.info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(207, 196, 227, 0.15);
    transition: box-shadow 0.3s ease;
}

    .info-card:hover {
        animation: pulseGlow 2s infinite ease-in-out;
        box-shadow: 0 0 20px rgba(207, 196, 227, 0.3);
        cursor: default;
    }

/* === Lesson Package Section === */
.card-title {
    color: #c8a2c8;
    font-weight: bold;
    text-shadow: 1px 1px 2px #121214;
    margin-bottom: 2pt;
}

.custom-card {
    background-color: rgba(207, 196, 227, 0.05) !important;
    border-radius: 1rem !important;
    transition: box-shadow 0.3s ease !important;
    box-shadow: 0 0 10px rgba(207, 196, 227, 0.15) !important;
    cursor: default !important;
    border: 2px solid #c8a2c8;
    color: #e4d9f2;
}

    .custom-card:hover {
        animation: pulseGlow 2s infinite ease-in-out !important;
        box-shadow: 0 0 20px rgba(207, 196, 227, 0.35) !important;
        border-color: #e0d7ff;
    }

    .custom-card .card-title {
        color: #c8a2c8;
        font-weight: bold;
        text-shadow: 1px 1px 2px #121214;
    }

    .custom-card .card-text,
    .custom-card p {
        color: #cfc4e3;
    }

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(207, 196, 227, 0.35);
    }

    50% {
        box-shadow: 0 0 30px rgba(207, 196, 227, 0.6);
    }
}

/* === tbc - purple buttons === */
.btn-cta,
.call-to-action a.btn,
.btn-light-purple {
    display: inline-block;
    font-weight: 600;
    padding: 15px 50px; 
    border-radius: 12px; 
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem; 
    background: linear-gradient(135deg, #c292f0 0%, #7b4bff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 75, 255, 0.5);
    transition: background 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 10;
}

    .btn-cta:hover,
    .call-to-action a.btn:hover,
    .btn-light-purple:hover,
    .btn-cta:focus,
    .call-to-action a.btn:focus,
    .btn-light-purple:focus {
        background: linear-gradient(135deg, #7b4bff 0%, #c292f0 100%);
        transform: scale(1.05);
        outline: none; 
    }

/* === Carousel === */
#photoCarousel {
    max-width: 100%;
    margin: 3rem auto 6rem;
}

    #photoCarousel .carousel-inner,
    #photoCarousel .carousel-item,
    #photoCarousel .carousel-item img {
        height: auto;
        max-height: 60vh;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    #photoCarousel .carousel-caption {
        background-color: rgba(18, 18, 20, 0.7);
        color: #e4d9f2;
        border-radius: 8px;
        padding: 0.25rem 0.75rem;
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
        opacity: 1;
    }

.flip-card {
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.flip-card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-card-back {
    transform: rotateY(180deg);
}

    .flip-card-front img,
    .flip-card-back img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

/* === Acronym & Hearts === */
.image-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .image-container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 1rem;
        max-width: 100%;
    }

    .picture-acronym {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .acronym-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.2em;
        font-size: 1rem;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .acronym-container {
        display: none;
    }

    .header-container {
        justify-content: flex-start !important; 
        padding-left: 4.5rem; 
        padding-right: 1.5rem; 
        max-width: 100%; 
        margin: 0 auto; 
    }

    .acronym-details {
        flex: 1 1 100%;
        max-width: 320px; 
        margin-bottom: 1rem; 
    }
}

.image-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.lead,
.word-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    width: auto; 
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.word-item strong {
    color: #c292f0;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    margin-right: 0.4rem;
    position: relative;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 1.5rem);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    min-width: 0;
    background: linear-gradient(120deg, #c292f0 40%, #ffffff 50%, #c292f0 60%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: navbarShimmer 8s ease-in-out infinite;
    user-select: none;
    cursor: default;
}


.word-item .rest {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.word-item {
    text-align: left;
}

.acronym-details {
    margin-left: 2%;
    margin-right: 2%;
}

.heart {
    display: inline-block;
    color: #c292f0;
    font-size: 1.5rem;
    margin: 0 0.3em;
    animation: glow 2s ease-in-out infinite, heartbeat 1.5s ease-in-out infinite;
    vertical-align: middle;
    text-shadow: 0 0 6px #cfc4e3, 0 0 12px #cfc4e3;
}

.small-heart{
    display:none;
}

.big-heart {
    display: inline-block;
}

@media only screen and (max-width: 523px) {
    .small-heart{display:block;}
    .big-heart{display:none;}
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 6px #cfc4e3, 0 0 12px #cfc4e3;
    }
    50% {
        text-shadow: 0 0 10px #d8b4f8, 0 0 20px #d8b4f8;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* === Testimonials === */
.testimonials {
    background-color: #212529;
    padding: 4rem 0;
    color: #e4d9f2;
    width: 100vw;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

    .testimonials h2 {
        color: #b194d6;
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }

    .testimonials blockquote {
        background-color: #e4d9f2;
        color: #4d3671;
        border-left: 6px solid #e4d9f2;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 2rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

        .testimonials blockquote footer.blockquote-footer {
            background-color: #e4d9f2;
            color: #4d3671;
            font-weight: 600;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 0 0 12px 12px;
        }

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #8360c3, #2ebf91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    filter: drop-shadow(0 0 10px #c5a3ff);
}

.chevron-glass svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    stroke: #2e3032;
    stroke-width: 2.5;
    backdrop-filter: blur(2px);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.05));
    transition: transform 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
    will-change: transform;
}

.chevron-left svg {
    transform: rotate(180deg);
}

.chevron-glass:hover {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255,255,255,0.2), 0 0 20px rgba(200,200,255,0.1);
}

/* FAQ - Accordion item card style */
.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Accordion header button */
.accordion-button {
    background-color: #a16cdb; 
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background-color: #d8b4f8; 
        color: #fff;
        box-shadow: none;
    }

    /* Hover effect */
    .accordion-button:hover {
        background-color: #7d3c98; /* darker purple on hover */
        color: #fff;
    }

/* Accordion body */
.accordion-body {
    background-color: #f8f9fa;
    font-size: 1.05rem;
    color: #333;
    padding: 1rem 1.5rem;
    border-top: 1px solid #ddd;
}

/* Smooth collapse transition */
.accordion-collapse {
    transition: max-height 0.35s ease;
}

/* Add a rotating chevron icon */
.accordion-button::after {
    content: '\25bc'; 
    color: white;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    background-image: none !important; 
    filter: none !important;
}

.accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

/* === Footer === */
.site-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(180deg, #222 0%, #111 100%);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

/* === Social Media Icons === */
.social-icon {
    width: 32px;
    border-radius: 50%;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
    .carousel-container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .arrow-only {
        display: none;
    }

    .carousel-container .heading-text {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-header,
    .testimonials,
    .call-to-action {
        padding: 2rem 1rem;
    }

    .acronym-container .lead-row {
        flex-direction: column;
        align-items: center;
    }

    .info-card,
    .custom-card {
        padding: 1rem;
    }

        .custom-card .card-title {
            font-size: 1.1rem;
        }

        .custom-card .card-text {
            font-size: 0.95rem;
        }
}

@media (max-width: 400px) {
    .call-to-action {
        font-size: 1rem;
        padding: 0 0.75rem 1rem;
    }

        .call-to-action p {
            margin-bottom: 1.5rem !important;
        }

        .call-to-action a.btn {
            padding: 0.6rem 1rem;
            font-size: 1rem;
            margin-top: 1rem;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
}

.heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* space between hearts and text */
    margin-bottom: 1rem;
    flex-direction: column;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.heading {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    margin: 0;
}

.flexbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap:0;
}

f {
    flex: 0 0 auto; /* don’t grow, don’t shrink, size to content */
    margin: 0;
    padding: 0;
}

/* Heart styles (optional tweaks) */
.loveheart {
    font-size: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 2.2rem;
    }

    .loveheart {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .faq-heading {
        font-size: 1.6rem;
    }

    .loveheart {
        font-size: 1.2rem;
    }
}

/* Wheel & layout */
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
}

#wheel-container {
    position: relative;
    text-align: center;
    display: inline-block;
}

#cards {
    max-width: 500px;
}

@media (max-width: 576px) {
    #canvas {
        width: 95%;
    }
    .reducemargint {
        margin-top: -20px;
    }
}

@media (min-width: 400px) and (max-width: 434px) {
  .weird-phones {
    font-size: 90%;
  }
}

@media (min-width: 369px) and (max-width: 399px) {
  .weird-phones {
    font-size: 110%;
  }
}


.card {
    display: none;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

    .card img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .card.active {
        display: block;
    }

/* Spin button */
#submit {
    margin-top: 20px;
}

/* Wheel title */
#wheel-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Pointer arrow (pointing DOWN) */
#wheel-pointer {
    position: absolute;
    top: -30px; /* sits just above wheel */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #c292f0; /* tip points DOWN */
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}