/*
 * Landing Page Styles
 * Password entry page before RSVP form
 */

.landing-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 100;
}

.landing-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.landing-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: #8b6f5c;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.landing-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.landing-form {
    margin-top: 30px;
}

.landing-form .form-group {
    text-align: left;
    margin-bottom: 25px;
}

.landing-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.landing-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.landing-form input[type="password"]:focus {
    outline: none;
    border-color: #c4a57b;
    box-shadow: 0 0 0 3px rgba(196, 165, 123, 0.1);
}

.landing-form .btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c4a57b 0%, #8b6f5c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.landing-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 111, 92, 0.3);
}

.landing-form .btn-submit:active {
    transform: translateY(0);
}

.landing-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Alert styles for landing page */
.landing-card .alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.landing-card .alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.landing-card .alert-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-card {
        padding: 40px 30px;
    }

    .landing-title {
        font-size: 2.5rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-card {
        padding: 30px 20px;
    }

    .landing-title {
        font-size: 2rem;
    }
}
