/* ==========================================================================
   Landing Page Shared Styles
   Used by: GettingStarted.razor, Signup.razor, Billing.razor
   ========================================================================== */

/* Background */
.shaded-background {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    overflow: hidden;
}

/* Container */
.landing-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.landing-container.narrow {
    max-width: 600px;
}

.landing-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.landing-container .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Cards */
.glass-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.glass-card h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Action Cards Grid */
.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

/* Feature Icons */
.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #0056b3;
}

.btn-primary:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-outline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Disclaimer */
.disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.disclaimer p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.disclaimer strong {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 600px) {
    .action-cards {
        grid-template-columns: 1fr;
    }

    .landing-container h1 {
        font-size: 2rem;
    }
}