/* Contact page container */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact info section */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Contact form styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
}

/* Decorative corners */
.contact-form::before,
.contact-form::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
}

.contact-form::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.contact-form::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Textarea specific styles */
textarea {
    min-height: 150px;
    resize: vertical;
}

/* Social links section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Message status styles */
.success-message,
.error-message {
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    display: none;
    border-radius: 4px;
}

.success-message {
    background: rgba(202, 102, 26, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.error-message {
    background: rgba(147, 16, 14, 0.1);
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
}

/* Contact form button styles */
.contact-form button {
    background: none;
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}

.contact-form button:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Contact form input styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1em;
    transition: all 0.3s ease;
    background: var(--background-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
}
