/* assets/css/style.css - Restored Wix Look */
:root {
    --primary-text: #282936;
    --secondary-text: #454545;
    --bg-color: #ffffff;
    --accent-color: #454545;
    --border-color: #282936;
    --footer-bg: #f7f7f7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid #eeeeee;
}

.logo-container img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-text);
    font-size: 14px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 252, 1) 100%);
}

.verification-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.subheading {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary-text);
}

.instruction {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.2s;
}

input[type="text"]:focus {
    box-shadow: 0 0 0 1px var(--border-color);
}

.verify-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: opacity 0.2s;
}

.verify-btn:hover {
    opacity: 0.9;
}

.support-link {
    font-size: 14px;
    color: #666;
}

.support-link a {
    color: #000;
    text-decoration: underline;
}

/* Results */
.result-container {
    margin-top: 30px;
    padding: 20px;
    border-radius: 4px;
    display: none;
    text-align: left;
}

.status-badge {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.status-success {
    color: #2e7d32;
}

.status-error {
    color: #c62828;
}

.history-box {
    background: #f1f1f1;
    padding: 15px;
    margin-top: 15px;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #fafafa;
    padding: 40px 5%;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-info p {
    margin: 5px 0;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #888;
    margin-bottom: 8px;
}

/* Language Dropdown */
#langSelect {
    border: 1px solid #ddd;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}