/* ZEYDAŞ - Yapım Aşamasında - Modern sayfa stilleri */

:root {
    --bg: #f7f7f7;
    --green: #60a14f;
    --green-dark: #4d8340;
    --text: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    line-height: 1.5;
}

.page {
    width: 100%;
    max-width: 520px;
    text-align: center;
}

/* Marka alanı */
.brand {
    margin-bottom: 3rem;
}

.brand-logo {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius);
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* İçerik alanı */
.content {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96, 161, 79, 0.12);
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.message {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-text a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.contact-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 1.5rem 1rem;
    }

    .brand-logo {
        width: 180px;
        margin-bottom: 1rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }
}
