/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
header {
    background: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #0056b3;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    animation: fadeIn 2s ease-in-out;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    margin-bottom: 40px;
    animation: fadeInUp 2s ease-in-out;
}

.section h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Links */
.section a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: bounceIn 1s;
}

.section a:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Special Offers */
.special-offers {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 2s ease-in-out;
}

.special-offers h2 {
    color: #007bff;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 2s ease-in-out;
}

.contact-form div {
    margin: 15px 0;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    font-size: 1em;
}

.contact-form button:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #007bff;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    margin-top: 20px;
}

/* Social Links */
.social-links {
    text-align: center;
    margin: 20px 0;
}

.social-links a {
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

/* Facebook Button */
.facebook-button {
    display: inline-flex;
    margin: 10px;
    padding: 15px 25px;
    text-decoration: none;
    background: #4267B2;
    color: #fff !important; /* Force text color to white */
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-button:link,
.facebook-button:visited {
    color: #fff !important; /* Ensure text color is white */
}

.facebook-button:hover {
    background: #365899;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.facebook-button:active {
    background: #2d4373;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
