/* ============================================
   Home Landing Page Styles
   iCrew.hu - Nagyker / Kisker választó
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
}

/* Header */
.home-header {
    margin-bottom: 60px;
}

.home-logo {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.home-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

/* Cards */
.home-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    width: 300px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.home-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.home-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.card-badge {
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-badge-locked {
    background: #f59e0b;
}

/* Wholesale card accent */
.home-card-wholesale:hover {
    border-color: #10b981;
}

/* Retail card accent */
.home-card-retail:hover {
    border-color: #0066FF;
}

/* Footer */
.home-footer {
    margin-top: 60px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.modal-content input:focus {
    outline: none;
    border-color: #0066FF;
}

.error-msg {
    color: #ef4444;
    font-size: 14px;
    margin-bottom: 12px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.modal-buttons button {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel {
    background: #f3f4f6;
    border: none;
    color: #6b7280;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.btn-submit {
    background: #0066FF;
    border: none;
    color: white;
}

.btn-submit:hover {
    background: #0052cc;
}

/* Responsive */
@media (max-width: 640px) {
    .home-cards {
        flex-direction: column;
        align-items: center;
    }

    .home-card {
        width: 100%;
        max-width: 300px;
    }

    .home-logo {
        font-size: 36px;
    }
}
