/* === West Wind Supplies — Landing Page Styles === */
/* Editorial design: deep navy + gold, Instrument Serif + DM Sans */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --wws-font-display: 'Instrument Serif', Georgia, serif;
    --wws-font-body: 'DM Sans', system-ui, sans-serif;
    --wws-font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    --wws-navy: #1e3a5f;
    --wws-navy-deep: #0f2440;
    --wws-navy-light: #2a4f7a;
    --wws-gold: #d4a73a;
    --wws-gold-dim: rgba(212, 167, 58, 0.15);
    --wws-gold-soft: #e8c56d;
    --wws-sky: #4a90c4;
    --wws-sky-dim: rgba(74, 144, 196, 0.12);
    --wws-cream: #faf8f4;
    --wws-warm-white: #f5f1eb;
    --wws-text-dark: #1a1a1a;
    --wws-text-mid: #5a5a5a;
    --wws-text-light: rgba(255, 255, 255, 0.85);
    --wws-text-white: #ffffff;
    --wws-border-light: rgba(0, 0, 0, 0.08);
}

/* === Body === */
body.landing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--wws-cream);
    font-family: var(--wws-font-body);
    padding: 0;
    margin: 0;
}

body.landing-page #app {
    display: flex;
    flex-direction: column;
    flex: 1;
}

body.landing-page .landing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* === Header === */
.landing-header {
    background: linear-gradient(135deg, var(--wws-navy-deep) 0%, var(--wws-navy) 60%, var(--wws-navy-light) 100%);
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.landing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 167, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-header .company {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.landing-header .company .logo img {
    height: 72px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.landing-header .company h1 {
    font-family: var(--wws-font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--wws-text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0;
}


/* === Hero / Tagline === */
.landing-tagline {
    background: var(--wws-warm-white);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--wws-border-light);
}

.landing-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wws-gold), transparent);
}

.landing-tagline h3 {
    font-family: var(--wws-font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--wws-navy);
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

.landing-tagline h3 em {
    color: var(--wws-navy);
    font-style: italic;
}

/* === Login Section === */
.landing-login {
    padding: 48px 40px 64px;
    display: flex;
    justify-content: center;
    background: var(--wws-cream);
    background-image: radial-gradient(circle at 50% 100%, var(--wws-sky-dim) 0%, transparent 60%);
}

.landing-login .panel {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.landing-login .panel-heading {
    background: var(--wws-navy) !important;
    padding: 18px 28px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 !important;
    border: none !important;
}

.landing-login .panel-heading::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--wws-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-login .panel-heading strong {
    font-family: var(--wws-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--wws-text-white);
    letter-spacing: 0.5px;
}

.landing-login .panel-body {
    padding: 28px;
}

.landing-login .form-control {
    padding: 12px 14px;
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: 6px;
    font-family: var(--wws-font-body);
    font-size: 14px;
    color: var(--wws-text-dark);
    background: var(--wws-cream);
    height: auto;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-login .form-control:focus {
    border-color: var(--wws-sky);
    box-shadow: 0 0 0 3px var(--wws-sky-dim);
}

.landing-login .form-control::placeholder {
    color: #b0b0b0;
}

.landing-login .btn-primary {
    background: linear-gradient(135deg, var(--wws-navy) 0%, var(--wws-navy-light) 100%);
    border: none;
    border-radius: 6px;
    padding: 13px;
    font-family: var(--wws-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.landing-login .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
    background: linear-gradient(135deg, var(--wws-navy) 0%, var(--wws-navy-light) 100%);
}

.landing-login .btn-primary:active {
    transform: translateY(0);
}

.landing-login .form-group {
    margin-bottom: 18px;
}

.landing-login .form-group:last-child {
    margin-bottom: 0;
}

/* === Back Navigation === */
.landing-back {
    display: flex;
    justify-content: center;
    padding: 28px 40px;
    background: var(--wws-warm-white);
    border-bottom: 1px solid var(--wws-border-light);
}

.landing-back a {
    font-family: var(--wws-font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--wws-text-white);
    text-decoration: none;
    background: linear-gradient(135deg, var(--wws-navy) 0%, var(--wws-navy-light) 100%);
    padding: 10px 28px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-block;
}

.landing-back a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
    color: var(--wws-text-white);
    text-decoration: none;
}

/* === Privacy Content === */
.privacy-content {
    flex: 1;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 40px 64px;
    color: var(--wws-text-dark);
}

.privacy-content h1 {
    font-family: var(--wws-font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--wws-navy);
    margin-bottom: 8px;
}

.privacy-content .last-updated {
    font-family: var(--wws-font-mono);
    font-size: 12px;
    color: var(--wws-text-mid);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--wws-border-light);
}

.privacy-content h2 {
    font-family: var(--wws-font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--wws-navy);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--wws-border-light);
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.privacy-content ul {
    margin: 0 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-content li {
    font-size: 15px;
    line-height: 1.75;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.privacy-content li:last-child {
    border-bottom: none;
}

.privacy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--wws-gold);
    border-radius: 50%;
}

.privacy-content li strong {
    color: var(--wws-navy);
}

.privacy-content a {
    color: var(--wws-sky);
    text-decoration: none;
    border-bottom: 1px solid var(--wws-sky-dim);
}

.privacy-content a:hover {
    border-bottom-color: var(--wws-sky);
}

/* === Footer === */
.landing-footer {
    background: linear-gradient(135deg, var(--wws-navy-deep) 0%, var(--wws-navy) 100%);
    padding: 48px 40px 32px;
    color: var(--wws-text-light);
}

.landing-footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: start;
}

.landing-footer .footer-logo img {
    height: 100px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    opacity: 0.9;
}

.landing-footer .footer-info h3 {
    font-family: var(--wws-font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--wws-text-white);
    margin-bottom: 12px;
}

.landing-footer .footer-info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--wws-text-light);
}

.landing-footer .footer-info .phone {
    font-family: var(--wws-font-mono);
    font-size: 14px;
    color: var(--wws-gold-soft);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.landing-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.landing-footer .footer-links a {
    font-family: var(--wws-font-mono);
    font-size: 12px;
    color: var(--wws-gold-soft);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border: 1px solid rgba(212, 167, 58, 0.25);
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}

.landing-footer .footer-links a:hover {
    background: rgba(212, 167, 58, 0.1);
    border-color: var(--wws-gold-soft);
    color: var(--wws-gold-soft);
    text-decoration: none;
}

.landing-footer .footer-bottom {
    max-width: 900px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--wws-font-mono);
}

/* === Responsive === */
@media (max-width: 768px) {
    .landing-header {
        padding: 20px 24px;
    }

    .landing-header .company {
        gap: 16px;
    }

    .landing-header .company .logo img {
        height: 52px;
    }

    .landing-header .company h1 {
        font-size: 24px;
    }

    .landing-tagline {
        padding: 40px 24px;
    }

    .landing-tagline h3 {
        font-size: 20px;
    }

    .landing-login {
        padding: 32px 20px 48px;
    }

    .landing-back {
        padding: 20px 24px;
    }

    .privacy-content {
        padding: 32px 24px 48px;
    }

    .privacy-content h1 {
        font-size: 28px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .landing-footer {
        padding: 36px 24px 24px;
    }

    .landing-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .landing-footer .footer-logo {
        display: flex;
        justify-content: center;
    }

    .landing-footer .footer-logo img {
        height: 80px;
    }

    .landing-footer .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .landing-header .company .logo img {
        height: 44px;
    }

    .landing-header .company h1 {
        font-size: 20px;
    }


}
