/* static/content/css/contact.css */
.contact-container {
    padding-top: 40px; 
    padding-bottom: 60px; /* Increased bottom padding */
    max-width: 700px; /* Constrain width for a cleaner look, similar to reference */
    margin: 0 auto; /* Center the container */
}
.contact-header {
    text-align: center;
    margin-bottom: 40px; /* Increased margin for more space */
}

.contact-header h1 {
    font-size: 3em; /* Normalize to global h1 size (48px) */
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1em;
    color: #666;
    max-width: 550px;
    margin: 0 auto 30px auto; /* Center and add bottom margin */
}

.contact-info-top {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9; /* Light grey background for info section */
    border-radius: 5px;
}

.contact-info-top p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-top p i {
    margin-right: 10px;
    color: #1DB954; /* Your theme green */
}

.contact-info-top a {
    color: #1DB954;
    font-weight: 500;
}
.contact-info-top a:hover {
    text-decoration: underline;
}

/* Form styling - inspired by coachajit.com */
.contact-form-section {
    padding: 0; 
}

.form-group {
    margin-bottom: 25px; /* Increased margin */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95em;
    color: #333;
}

.form-control {
    display: block;
    width: 100%;
    padding: 15px 18px; /* Increased padding */
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #fdfdfd; /* Slightly off-white */
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 5px; /* Slightly more rounded */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Subtle shadow */
}

.form-control::placeholder {
    color: #6c757d; 
    opacity: 1; 
}

.form-control:focus {
    border-color: #1DB954; /* Theme green on focus */
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(29, 185, 84, 0.15); /* Green glow */
    background-color: #fff; 
}

.form-control.is-invalid {
    border-color: #dc3545; /* Bootstrap's danger color for errors */
}

.invalid-feedback {
    display: block; /* Ensure it's shown */
    color: #dc3545;
    font-size: 0.875em;
    margin-top: .25rem;
}

.btn-submit-form {
    background-color: #2c3e50; /* Dark blue/grey from your palette */
    border-color: #2c3e50;
    color: white;
    padding: 15px 30px; /* Increased padding */
    font-size: 1.1em;
    font-weight: 600; /* Bolder */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    display: block; 
    width: 100%; 
    margin-top: 10px; /* Reduced margin if no help text */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-submit-form:hover {
    background-color: #34495e; /* Slightly lighter on hover */
    border-color: #34495e;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.messages {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0; /* Adjusted margin */
}

.messages li {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.05em;
}

.messages li.success {
    background-color: #e6f9ee; /* Lighter green */
    color: #107536;
    border: 1px solid #a1e0ba;
}

.messages li.error {
    background-color: #fdecea;
    color: #842029;
    border: 1px solid #f8c5c9;
}

/* Social links at the bottom - can be styled further if desired */
.contact-social-links {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-social-links h3 {
    font-size: 1.4em;
    color: #444;
    margin-bottom: 25px;
}

.contact-social-links a {
    font-size: 1.8em;
    margin: 0 12px; 
    color: #555; 
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block; 
}

.contact-social-links a:hover {
    color: #1DB954; 
    transform: translateY(-3px) scale(1.1); /* More pronounced hover */
    text-decoration: none;
} 