/**
 * Contact Page Styles
 * Following Camper Jack Service style specifications
 */

/* Contact Page Layout */
.contact-page .section {
    padding: 3rem 1.5rem;
}

.contact-page .title {
    color: #000000;
}

/* Contact Information Box */
.contact-info-box {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    color: #ff8c00; /* Primary color */
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item span {
    color: #4a4a4a; /* Secondary text color */
    font-size: 1rem;
    line-height: 1.5;
}

/* Social Links */
.social-links .buttons {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}

.social-links .button {
    background-color: #ff8c00; /* Primary color */
    border-color: transparent;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links .button:hover {
    background-color: #ff6b35; /* Secondary color for hover */
}

/* Contact Form */
.contact-form-box {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form .input, 
.contact-form .textarea {
    border: 2px solid #e0e0e0; /* Medium gray for borders */
    border-radius: 4px;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.contact-form .input:focus, 
.contact-form .textarea:focus {
    border-color: #ff8c00; /* Primary color when focused */
    box-shadow: 0 0 0 1px rgba(255, 140, 0, 0.2);
}

.contact-form .button {
    background-color: #ff8c00; /* Primary color */
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-form .button:hover {
    background-color: #ff6b35; /* Secondary color for hover */
}

/* Map Container */
.map-container {
    margin-top: 3rem;
}

.map-container .box {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background-color: #f5f5f5;
    color: #4a4a4a;
    font-weight: 500;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-page .column {
        padding: 0.75rem;
    }
    
    .contact-info-box,
    .contact-form-box {
        margin-bottom: 1.5rem;
    }
} 