/* 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 {
    padding: 4rem 0;
    text-align: center;
    background-color: #16213e; /* Slightly lighter dark background for the section */
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Headings */
h1 {
    font-family: 'Montserrat', sans-serif; /* Stronger font for headings */
    color: #e94560; /* Accent color for headings */
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 3em;
    animation: fadeInDown 1s ease-out;
}

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

/* Call to Action Buttons */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Space between buttons */
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.form-button {
    background-color: #e94560; /* Accent color for buttons */
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px; /* Pill-shaped buttons */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none; /* Remove underline from links */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-button i {
    margin-right: 0.8rem;
    font-size: 1.2em;
}

.form-button:hover {
    background-color: #ff6b8e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background-color: #0f3460; /* Background color for the video player area */
    animation: fadeIn 1.5s ease-out;
}

.video-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 fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

    .content-section {
        padding: 2.5rem 0;
    }

    .form-buttons {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
        gap: 1.5rem;
    }

    .form-button {
        width: 80%; /* Make buttons take more width */
        margin: 0 auto; /* Center buttons */
        padding: 0.8rem 2rem;
        font-size: 1em;
    }
}

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

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .form-button {
        width: 90%;
        font-size: 0.9em;
    }
}
