/* Strona contact.php - Formularz kontaktowy */

/* UKŁAD KONTAKTOWY (GRID) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie równe kolumny */
    gap: 40px;
    margin-top: 30px;
}

.contact-form-section,
.contact-info-section {
    background: var(--bg-lighter);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #444;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-top: 0;
    color: #fff;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Formularz */
.contact-form-section label {
    display: block;
    margin-bottom: 5px;
    color: #aaa;
    font-weight: bold;
}

.contact-form-section input,
.contact-form-section textarea,
.contact-form-section select {
    width: 100%;
    background: #1e1e1e;
    border: 1px solid #555;
    color: white;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-family: inherit;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.contact-form-section .btn-submit {
    background: var(--accent-green);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    transition: 0.2s;
}

.contact-form-section .btn-submit:hover {
    background: #21867a;
    transform: translateY(-1px);
}

/* Sekcja informacyjna */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #1e1e1e;
    border-radius: 6px;
    border: 1px solid #333;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
    color: #aaa;
    line-height: 1.6;
}

.info-text a {
    color: var(--accent-blue);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Komunikaty */
.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(42, 157, 143, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.alert-error {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Responsywność */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
