/* =========================================================
   WaterFall Labs - Isolated Original Homepage Styles
   File: index_page.css
   ========================================================= */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

/* Background */
.background img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Header */
header {
    background: rgb(0, 0, 0);
    color: white;
    border-bottom: 1px solid white;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

nav,
.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 10px;
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: black;
    border: 1px solid white;
    min-width: 120px;
    z-index: 100;
}

.dropdown-menu a {
    color: white;
    padding: 8px 12px;
    display: block;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #333;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Homepage layout */
.home-container {
    padding: 30px 5%;
    text-align: center;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.intro-section {
    margin: 30px auto 10px;
    max-width: 1100px;
}

.home-logo {
    width: 355px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.home-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    margin: 10px 0;
    text-shadow: 2px 2px 2px black;
    padding-bottom: 20px;
    border-bottom: 2px solid white;
}

.home-description {
    width: 90%;
    margin: 50px auto 60px;
    color: #ffffffcc;
    font-size: 1.5em;
    line-height: 1.7;
    background-color: rgb(0 0 0 / 89%);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #ffffff3a;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.home-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.home-card {
    flex: 1 1 300px;
    max-width: 600px;
    background-color: rgb(0 0 0 / 89%);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.home-card:hover {
    background-color: rgba(0, 0, 0, 0.507);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(159, 207, 255, 0.4);
}

.home-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: rgba(159, 207, 255, 0.9);
    margin-bottom: 10px;
}

.home-card p {
    color: #ffffffd2;
    font-size: 1em;
    line-height: 1.6;
}

/* Compare section */
.compare-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: rgba(159, 207, 255, 0.95);
    margin-bottom: 20px;
}

.home-description table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.home-description th,
.home-description td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    vertical-align: top;
}

.home-description th {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
}

.good-col {
    color: #8ee6ff;
}

.bad-col {
    color: #ff9b9b;
}

.compare-table-item {
    padding-top: 30px;
    color: #ffffffd8;
    font-size: 1rem;
    line-height: 1.5;
}

/* Pricing / tier lists */
.tier-features {
    list-style: none;
    margin: 20px 0 10px;
    padding: 0;
    text-align: left;
}

.tier-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 0.95em;
    color: #ffffff;
}

.tier-features li.tier-yes::before {
    content: "✔";
    color: #00d4ff;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}

.tier-features li.tier-no::before {
    content: "✘";
    color: #ff4d4d;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}

.subscribe-button-wrapper,
.paypal-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.subscribe-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    background-color: #2ecc71;
    font-weight: bold;
    color: black;
    border: 2px solid #1e8449;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
}

.subscribe-button:hover {
    background-color: #27ae60;
    text-shadow: -2px 2px 5px white;
}

.subscribe-button:active {
    transform: translateY(4px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
}

/* PayPal containers */
#paypal-button-container-standard,
#paypal-button-container-pro {
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0;
}

/* Feedback Widget */
#feedback-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 14px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    color: white;
    z-index: 999;
    max-width: 260px;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.feedback-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

#feedback-widget button {
    margin-top: 8px;
    width: 100%;
    padding: 6px;
    font-family: 'Orbitron', sans-serif;
    background: #2ecc71;
    border: 2px solid #1e8449;
    cursor: pointer;
    color: black;
}

#feedback-widget button:hover {
    background: #27ae60;
}

/* Feedback Modal */
#feedback-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.feedback-modal-content {
    background: rgb(0 0 0 / 90%);
    border: 1px solid white;
    width: 90%;
    max-width: 420px;
    margin: 10% auto;
    padding: 22px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

#feedback-close {
    float: right;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.feedback-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 18px;
    color: rgba(159, 207, 255, 0.95);
}

.feedback-modal-content textarea {
    width: 100%;
    min-height: 130px;
    padding: 10px;
    resize: vertical;
    border-radius: 8px;
    border: 1px solid #999;
    margin-bottom: 12px;
    font-family: inherit;
}

.feedback-modal-content button[type="submit"] {
    width: 100%;
    padding: 10px;
    font-family: 'Orbitron', sans-serif;
    background: #2ecc71;
    border: 2px solid #1e8449;
    color: black;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.feedback-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.5;
}

#feedback-toast {
    display: none;
    position: fixed;
    bottom: 95px;
    right: 20px;
    background: rgba(46, 204, 113, 0.95);
    color: black;
    font-family: 'Orbitron', sans-serif;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 1001;
    box-shadow: 0 0 14px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid white;
}

footer a {
    color: rgba(159, 207, 255, 0.95);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Nav */
.hamburger {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Orbitron', sans-serif;
    padding-top: 14px;
}

.mobile-nav select {
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    background: #111;
    color: white;
    border: 1px solid #555;
}

.mobile-lang-label {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.mobile-nav hr {
    border: none;
    border-top: 1px solid #444;
    margin: 10px 0;
}

.mobile-nav.open {
    left: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .home-buttons {
        flex-direction: row;
        align-items: center;
    }

    .home-description p {
        font-size: x-large;
    }
}

@media (max-width: 900px) {
    .home-logo {
        margin: 0 auto;
    }

    .subscribe-button {
        font-size: 12px;
    }
}

@media (max-width: 830px) {
    .nav-item {
        font-size: 14px;
        padding: 0 8px;
    }
}

@media (max-width: 700px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header {
        justify-content: flex-start;
    }

    .home-logo {
        width: 105px;
        height: 100px;
    }

    .home-container {
        padding: 0 3%;
    }

    .home-title {
        font-size: 1.2em;
    }

    .home-description {
        width: 95%;
        margin: 18px auto 12px;
        font-size: 0.9em;
        padding: 20px 14px;
    }

    .home-card {
        min-height: 200px;
        padding: 15px 15px;
    }

    .home-card h2 {
        font-size: 0.9em;
    }

    .home-card p {
        font-size: 0.8em;
    }

    .home-buttons {
        gap: 7px;
    }

    .compare-table-item {
        padding-top: 12px;
    }

    .subscribe-button {
        font-size: 9px;
    }

    #feedback-widget {
        bottom: 14px;
        right: 14px;
        max-width: 220px;
    }

    .feedback-modal-content {
        margin: 18% auto;
        padding: 18px;
    }
}

@media (max-width: 500px) {
    .subscribe-button {
        padding: 7px 1px;
    }

    .home-buttons {
        flex-direction: column;
    }

    .home-card {
        max-width: 100%;
    }

    .mobile-nav {
        width: 240px;
    }
}


/* =========================================================
   Homepage full-page polish pass
   Append to end of index_page.css
   ========================================================= */

/* Main page framing */
.home-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 28px 4% 48px;
}

.intro-section {
    margin: 24px auto 12px;
    max-width: 1200px;
}

.home-logo {
    filter: drop-shadow(0 0 10px rgba(159, 207, 255, 0.18));
}

.home-title {
    max-width: 920px;
    margin: 10px auto 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* Main text panel */
.home-description {
    width: min(1100px, 94%);
    margin: 36px auto 42px;
    padding: 24px 28px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 14, 20, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Keep the 3-card desktop feel, but make it cleaner */
.home-buttons {
    width: min(1320px, 100%);
    margin: 0 auto 34px;
    gap: 22px;
    justify-content: center;
}

.home-card {
    flex: 1 1 320px;
    max-width: 400px;
    min-height: 100%;
    border-radius: 18px;
    padding: 26px 22px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 14, 20, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-card:hover {
    background:
        linear-gradient(180deg, rgba(7, 14, 22, 0.94) 0%, rgba(14, 22, 32, 0.92) 100%);
    transform: translateY(-6px);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.26),
        0 0 20px rgba(159, 207, 255, 0.18);
}

.home-card h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 14px;
}

.home-card p {
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Tier list cleanup */
.tier-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 14px;
}

.tier-features li {
    margin-bottom: 0;
    line-height: 1.5;
}

/* Compare section polish */
.compare-title {
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.home-description table {
    margin-top: 14px;
}

.home-description th,
.home-description td {
    padding: 14px 12px;
}

.compare-table-item {
    padding-top: 14px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.subscribe-button {
    min-width: 170px;
    text-align: center;
    border-radius: 8px;
    padding: 11px 18px;
    box-shadow: 0 6px 14px rgba(46, 204, 113, 0.18);
}

.subscribe-button:hover {
    box-shadow: 0 10px 18px rgba(46, 204, 113, 0.22);
}

/* Feedback widget */
#feedback-widget {
    border-radius: 14px;
    padding: 14px 16px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(12, 16, 22, 0.92) 100%);
}

#feedback-widget button {
    border-radius: 8px;
}

.feedback-modal-content {
    border-radius: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
    .home-buttons {
        gap: 18px;
    }

    .home-card {
        flex: 1 1 300px;
        max-width: 380px;
    }
}

@media (max-width: 950px) {
    .home-container {
        padding: 22px 4% 38px;
    }

    .home-logo {
        width: 280px;
        height: 120px;
    }

    .home-title {
        font-size: 1.8em;
    }

    .home-description {
        width: min(1000px, 96%);
        margin: 26px auto 30px;
        padding: 20px 18px;
        font-size: 1.08em;
    }

    .home-buttons {
        gap: 16px;
    }

    .home-card {
        flex: 1 1 280px;
        max-width: 360px;
        padding: 22px 18px;
    }

    .home-card h2 {
        font-size: 1.08rem;
    }

    .home-card p {
        font-size: 0.94rem;
    }

    .compare-title {
        font-size: 1.4rem;
    }

    .home-description th,
    .home-description td {
        font-size: 0.95rem;
    }
}

@media (max-width: 700px) {
    .home-container {
        padding: 14px 3% 28px;
    }

    .intro-section {
        margin: 14px auto 8px;
    }

    .home-logo {
        width: 170px;
        height: 90px;
        margin-bottom: 6px;
    }

    .home-title {
        font-size: 1.08rem;
        padding-bottom: 12px;
    }

    .home-description {
        width: 96%;
        margin: 16px auto 20px;
        padding: 16px 14px;
        font-size: 0.92rem;
        line-height: 1.6;
        border-radius: 14px;
    }

    .home-buttons {
        gap: 12px;
        margin-bottom: 22px;
    }

    .home-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .home-card h2 {
        font-size: 0.98rem;
        margin-bottom: 10px;
    }

    .home-card p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .tier-features {
        gap: 8px;
        margin: 14px 0 10px;
    }

    .tier-features li {
        font-size: 0.86rem;
        padding-left: 22px;
    }

    .compare-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .home-description table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .home-description th,
    .home-description td {
        font-size: 0.84rem;
        padding: 10px 8px;
    }

    .compare-table-item {
        font-size: 0.84rem;
        line-height: 1.5;
        padding-top: 10px;
    }

    .subscribe-button {
        width: 100%;
        min-width: 0;
        font-size: 0.86rem;
        padding: 10px 14px;
    }

    #paypal-button-container-standard,
    #paypal-button-container-pro {
        max-width: 100%;
    }

    #feedback-widget {
        right: 10px;
        bottom: 10px;
        max-width: 190px;
        padding: 12px;
    }

    .feedback-text {
        font-size: 0.76rem;
    }

    .feedback-modal-content {
        margin: 18% auto;
        padding: 18px 14px;
    }
}

@media (max-width: 480px) {
    .home-title {
        font-size: 0.98rem;
    }

    .home-description {
        font-size: 0.86rem;
        padding: 14px 12px;
    }

    .home-card {
        padding: 16px 12px;
    }

    .home-card h2 {
        font-size: 0.9rem;
    }

    .home-card p,
    .tier-features li,
    .compare-table-item {
        font-size: 0.8rem;
    }

    .subscribe-button {
        font-size: 0.8rem;
        padding: 9px 12px;
    }

    #feedback-widget {
        max-width: 170px;
    }
}

