.site {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.meta {
    text-align: center;
    margin-top: 3rem;
}

.meta h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-silver);
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.column {
    flex: 1 1 0;
    min-width: 350px;
}

/* Form styling */
form {
    background: #333;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: .5rem;
    color: var(--text-light);
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: .75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #555;
    border-radius: 4px;
    background: #2a2a3a;
    color: var(--text-light);
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    background: var(--primary);
    color: var(--text-light);
    padding: .75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
}

form button:hover {
    background: var(--secondary);
}

/* Map */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .column {
        min-width: 100%;
    }
    .map-container {
        min-height: 300px;
    }
}
