/* Contact Page Styles */

/* Container Styling */
#contact-page {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
#contact-page h1 {
    color: #343a40;
    font-size: 2.5rem;
    font-weight: bold;
}

#contact-page p {
    font-size: 1.25rem;
    color: #6c757d;
}

/* Button Styling */
.button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

/* New Button Styles for Facebook and Instagram */
.btn-facebook {
    background-color: #3b5998;
    border-color: #3b5998;
    color: #fff;
    box-shadow: 0 4px 10px rgba(59, 89, 152, 0.2);
}

.btn-facebook:hover {
    background-color: #2d4373;
    border-color: #2d4373;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 89, 152, 0.3);
}

.btn-instagram {
    background-color: #e1306c;
    border-color: #e1306c;
    color: #fff;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.2);
}

.btn-instagram:hover {
    background-color: #c32aa3;
    border-color: #c32aa3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

/* Logo Styling */
.logo {
    margin-top: 2.5rem;
    animation: fadeIn 1s ease-in-out;
}

.logo img {
    max-width: 220px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
