/*
Theme Name: Just Today
Theme URI: https://justtodayapp.com
Description: Landing page for Just Today - Recovery Toolkit App
Author: Amor Design Group
Version: 1.0
*/

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

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    background: #0a0a14;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: #2AC3C7; text-decoration: none; }
a:hover { text-decoration: none; }

/* Hero */
.jt-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.jt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(42, 195, 199, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(232, 30, 146, 0.06) 0%, transparent 50%);
    animation: jt-glow 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes jt-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-3%, -3%); }
}

.jt-hero > * { position: relative; z-index: 1; }

.jt-logo {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.jt-logo span {
    background: linear-gradient(135deg, #2AC3C7, #E81E92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jt-tagline {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.jt-headline {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 24px;
}

.jt-subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Email Form */
.jt-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    width: 100%;
    margin-bottom: 16px;
}

.jt-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    padding: 16px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.jt-form input[type="email"]:focus {
    border-color: #2AC3C7;
}

.jt-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.jt-form button {
    background: linear-gradient(135deg, #2AC3C7, #1a8a8d);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.jt-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 195, 199, 0.3);
}

.jt-form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 60px;
}

/* Features */
.jt-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    width: 100%;
    padding: 0 24px;
}

.jt-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.jt-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 195, 199, 0.2);
}

.jt-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.jt-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.jt-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* Philosophy section */
.jt-philosophy {
    padding: 120px 24px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.jt-philosophy h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.jt-philosophy p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}

.jt-philosophy .jt-highlight {
    color: #2AC3C7;
    font-weight: 700;
}

/* Footer */
.jt-footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.jt-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

/* Success message */
.jt-success {
    display: none;
    color: #2AC3C7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 60px;
}

.jt-success.show {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .jt-logo { font-size: 48px; }
    .jt-headline { font-size: 32px; }
    .jt-tagline { font-size: 18px; }
    .jt-subhead { font-size: 16px; }
    .jt-form { flex-direction: column; }
    .jt-form button { width: 100%; }
    .jt-features { grid-template-columns: 1fr; max-width: 400px; }
    .jt-philosophy h2 { font-size: 28px; }
    .jt-philosophy p { font-size: 16px; }
}

/* Hide WP admin bar on frontend */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }
