

/* Import app.css for consistency with navbar and footer */
@import 'app.css';

/* General Body and Container Styles */
body {
    background-color: #1a1a2e; /* Dark background for a modern feel */
    color: #e0e0e0; /* Light text color for contrast */
    font-family: 'Poppins', sans-serif; /* Modern, readable font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Section Styling */
.content-section,
.google-map-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #16213e; /* Slightly lighter dark background for sections */
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.google-map-section {
    background-color: #0f3460; /* A bit darker for the map section */
}

/* Headings */
h1, h2 {
    font-family: 'Montserrat', sans-serif; /* Stronger font for headings */
    color: #e94560; /* Accent color for headings */
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3em;
    animation: fadeInDown 1s ease-out;
}

h2 {
    font-size: 2.2em;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out;
}

p {
    font-size: 1.1em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form Styles */
.contact-form {
    background-color: #0f3460; /* Darker background for the form */
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #4a5a7a;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-size: 1em;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.contact-form button {
    background-color: #e94560; /* Accent color for the button */
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #ff6b8e;
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.alert-success {
    background-color: #28a745;
    color: #ffffff;
}

.alert-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.error-message {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: -1rem;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

/* Contact Info */
.contact-info {
    margin-top: 3rem;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b8e;
    text-decoration: underline;
}

/* Social Media Section */
.social-media {
    margin-top: 4rem;
    background-color: #1a1a2e;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Space between icons */
    margin-top: 1.5rem;
    flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #0f3460;
    color: #e0e0e0;
    font-size: 1.8em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Specific social media icon colors (optional, but good for branding) */
.social-links .facebook:hover { background-color: #3b5998; }
.social-links .twitter:hover { background-color: #00acee; }
.social-links .instagram:hover { background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-links .whatsapp:hover { background-color: #25d366; }
.social-links .youtube:hover { background-color: #ff0000; }


/* Google Map Section */
.google-map-section h2 {
    color: #e0e0e0;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }

    .content-section,
    .google-map-section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: row;
        gap: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1em;
    }
}