* {
    box-sizing: border-box;
}

/** Breakpoint: 576px+ */
@media (min-width: 36em) {}

/** Breakpoint: 768px+ */
@media (min-width: 48em) {}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {}

/** Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/** Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}


html {
    font-size: 1em;    /* 16px = 1rem */
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(100,100,100);
    background-image: url("../img/whw_0.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin: 0;
    padding: 0;
    text-shadow: 0px 0px 40px black;
}

.main-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.main-logo {
    opacity: 40%;
}

.logo {
    height: 2rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .logo {
        height: 5rem;
    }
}
.answer {
    font-size: 1.5rem;
    color:white;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
    padding: 2rem;
}

.answer_text {
    margin: 0;
    font-size: 0.75rem;
    font-weight: normal;
    color: white;
    letter-spacing: 0.1em;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .answer_text {
        font-size: 1rem;
    }
}

.ask__ueberschrift {
    font-size: 1rem;
    color:white;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
    padding: 2rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .ask__ueberschrift {
        font-size: 2rem;
    }
}

.main-offer-1 {
    margin: auto;
}

.main-offer-2 {
    margin: auto;
}

.short_ueberschrift {
    margin: 0;
    font-style: italic;
    margin-left: 0;
    font-size: 0.8rem;
    font-weight: normal;
    color: white;
    letter-spacing: 0.1em;
    text-align: center;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .short_ueberschrift {
        font-size: 1.2rem;
    }
}

.short_ueberschrift > strong {
    text-transform: uppercase;
}

.big_ueberschrift {
    margin: 0;
    font-style: italic;
    margin-left: 0;
    font-size: 0.8rem;
    font-weight: normal;
    color: white;
    letter-spacing: 0.1em;
    text-align: center;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .big_ueberschrift {
        font-size: 1.2rem;
    }
}

.big_ueberschrift > strong {
    text-transform: uppercase;
}

.price-offer {
    display: block;
    font-size: 1rem;
    margin-top: 1rem;
    margin-left: 0;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .price-offer {
        font-size: 1.3rem;
    }
}

.big-price-offer {
    display: block;
    font-size: 99px;
    margin-top: 3rem;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: rgb(35, 31, 57, 0.5);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.modal-content_1 {
    background-color: rgb(35, 31, 57, 0.5);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 75%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.box_header {
    font-size: 1rem;
    color: white;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .box_header {
        font-size: 1.5rem;
    }
}

.box_text {
    font-size: 0.6rem;
    color: white;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .box_text {
        font-size: 0.8rem;
    }
}

.join-today {
    display: block;
    font-size: 0.8rem;
    background-color: black;
    color: white;
    border-radius: 99999px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 40px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
}

.join-today.disabled {
    pointer-events: none; /* Prevents clicking */
    opacity: 0.5; /* Makes it look disabled */
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .join-today {
        font-size: 1.2rem;
    }
}

.join-today:hover {
    background-color: rgb(50, 50, 50);
}

/*
.wissen-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}
*/

.wissen-section {
    color: white;
    background-color: rgb(100,100,100);
    background-image: url("../img/horoscope_banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    padding: 2.5rem 1.5rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .wissen-section {
        padding: 6rem 3rem;
    }
}

.wissen-heading {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .wissen-heading {
        font-size: 2rem;
    }
}

.wissen-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    color: white;
}

.wissen-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.wissen-link {
    text-decoration: none;
    color: #333;
    background: #fff;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.wissen-link:hover {
    background-color: #eee;
    color: #000;
}

.footer {
    padding-bottom: 3rem;
}

.footer_text {
    margin-top: 5rem;
    text-align: center;
    color: white;
}

.footer__links {
    font-size: 0.8rem;
}

.footer__link {
    color: white;
    text-decoration: none;
    font-size: 0.6rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__link {
        font-size: 0.7rem;
    }
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__terms {
    color: white;
    font-size: 0.9rem;
    font-weight: bolder;
    letter-spacing: 0.1em;
    text-decoration: none;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__terms {
        font-size: 1.5rem;
    }
}

.footer__terms:hover {
    text-decoration: underline;
}

.footer__read {
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__read {
        font-size: 1rem;
    }
}