/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: black;
    text-align: center;
    overflow-x: hidden;
}

header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: white;
    margin-top: 0px;
}

p {
    font-size: 1.1em;
    color: white;
}

/* Video Section Styling */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Makes it adapt to smaller screens */
    color: white;
    padding: 50px 20px;
    text-align: left; /* For better readability */
}

.video-section .content {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness for smaller screens */
    max-width: 1200px;
    width: 100%;
}

.video-section .description {
    flex: 1; /* Take up half the width */
    margin-right: 20px;
}

.video-section .description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.video-section .description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.video-section .video-container {
    flex: 1; /* Take up half the width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section .video-container video {
    width: 100%; /* Ensure video scales with container */
    max-width: 500px; /* Limit maximum video size */
    border: 3px solid #00d4ff; /* Add a border matching the theme */
    border-radius: 10px;
}

/* Particle Animation Canvas */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Footer Styling */
.footer {
    background-color: #333; /* Dark background for footer */
    color: white; /* Text color */
    padding: 20px 0;
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column; /* Stack for smaller screens */
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    font-size: 14px;
    text-align: center; /* Center-align text on smaller screens */
    margin-bottom: 10px; /* Add spacing for mobile views */
}

.footer-right {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    flex-wrap: wrap; /* Ensure icons stack if screen is too narrow */
}

.social-icon img {
    width: 35px; /* Icon size */
    height: 35px;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth animation */
}

/* Hover effect for social media icons */
.social-icon img:hover {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    filter: brightness(1.3); /* Make icons brighter on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1em;
    }

    .video-section .description h2 {
        font-size: 1.5rem;
    }

    .video-section .description p {
        font-size: 0.9rem;
    }

    .video-section .content {
        flex-direction: column; /* Stack description and video */
        align-items: center;
    }

    .video-section .description {
        margin: 0 0 20px 0;
    }

    .video-section .video-container video {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.9rem;
    }

    .footer-left {
        font-size: 12px;
    }

    .footer-right {
        gap: 10px; /* Reduce spacing between icons */
    }

    .social-icon img {
        width: 30px; /* Smaller icon size for small screens */
        height: 30px;
    }
}
