/* Global styles */
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    background-color: #FAFAFA; /* Very light gray for a clean background */
    font-family: 'Raleway', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

h1 {
    text-align: center;
    font-size: 2.5rem; /* Increased font size */
    color: #3B82F6; /* Bright blue for headings */
    margin-top: 2rem;
    text-transform: uppercase; /* Uppercase for emphasis */
}

p {
    color: #6B7280; /* Muted gray for readability */
    margin-bottom: 1rem;
}

/* Main Section Styles */
main {
    background-color: #60A5FA;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
    padding: 2rem; /* Added padding for better spacing */
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #374151; /* Dark gray for navbar */
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white; /* White for logo */
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0 1rem;
}

.navbar-menu a {
    color: white; /* White for link text */
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.navbar-menu a:hover {
    background-color: transparent; /* No background on hover */
    color: #60A5FA; /* Light blue for hover effect */
    border-radius: 5px; /* Rounded corners for hover effect */
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white; /* White for visibility */
    margin: 2px;
}

footer {
    background-color: #374151; /* Dark gray for footer */
    color: white; /* White for footer text */
    text-align: center;
    padding: 1rem;
}


/* Footer */
footer {
    list-style: none;
    background-color: #374151; /* Cool Slate Gray for footer */
    color: white;
    text-align: center;
    padding: 15px;
    position: relative; /* Allows for better positioning */
    width: 100%; /* Make sure the footer spans the full width */
    margin-top: auto; /* Ensure the footer stays at the bottom */
}

footer p {
    margin: 0.5rem 0; /* Margin for paragraph spacing */
}


/* Social Media Links */
.social-media {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between social media links */
    margin-top: 10px; /* Added margin to separate from text */
}

.social-media a {
    color: #60A5FA; /* Soft sky blue */
    text-decoration: none;
    font-size: 1.2rem; /* Slightly larger font size for better visibility */
}

.social-media a:hover {
    text-decoration: underline; /* Underline on hover */
}



/* Video Section Styles */
.video-div {
    background: #FFFFFF; /* White for video background */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 500px; /* Reduced size of videos */
    transition: transform 0.3s;
    margin: 20px 0; /* Add margin between videos */
}

.video-div:hover {
    transform: translateY(-5px); /* Hover effect */
}

.video-div iframe {
    border: none;
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 280px; /* Set smaller height */
}

/* Video Labels */
.role, .switch, .jango {
    padding: 15px;
    text-align: center;
    font-size: 1.2em;
    color: #1F2937; /* Dark charcoal for text */
    background-color: #FFDAB9; /* Light peach color for boxes */
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu (for mobile) */
.hamburger {
    font-size: 2em;
    color: #FFFFFF; /* White for hamburger menu icon */
    cursor: pointer;
    display: none; /* Hide on larger screens */
}

@media (max-width: 768px) {

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 40%; /* Full width for mobile */
        height: 100vh; /* Adjust to content height */
        position: absolute;
        top: 0;
        left: 0;
        background-color: white;
        color: #374151 !important; /* Deep Charcoal */
        z-index: 120;
        padding-top: 90px; /* Reduced padding for mobile */
        opacity: 1;
        transform: translateY(-100%); /* Slide out initially */
        transition: transform 0.3s ease, opacity 0.3s ease; 
    }

    .navbar-menu.active {
        display: flex; /* Show menu when active */
        opacity: 1;
        transform: translateY(0); /* Smooth slide down */
        color: #374151 !important;
    }

    .navbar-menu.active a{
        color: #374151 !important;
    }
    .navbar-menu a:hover {
        background-color: transparent;
        color: #3B82F6 !important;
    }

    .navbar-menu li {
        text-align: center;
        margin: 10px 0; /* Increased vertical spacing for mobile */
    }

    .navbar-menu.active a:hover{
        color: #60A5FA;
    }

    .navbar-toggle {
        display: flex; /* Show hamburger on small screens */
    }

    #nav-links li {
        margin: 0.5rem 0; /* Space between links */
    }
}

/* Hamburger icon animation styles */
.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Additional styles for other elements */
h2 {
    text-align: center;
    font-size: 2rem;
    color: #3B82F6; /* Bright blue for headings */
    margin-top: 2rem;
}

.section-p {
    text-align: center;
    border-radius: 10px;
    border: 1.5px solid #3B82F6; /* Bright blue border */
    width: 80%; /* Adjusted width for better alignment */
    margin: 1rem auto; /* Centered margin */
    padding: 1rem;
}

.imgdiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

img {
    border-radius: 1.5rem;
    width: 50%; /* Adjust image width */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

h3 {
    padding: 1rem;
}


       
footer {
    padding: 15px 10px;
}

footer p {
    font-size: 0.9rem; /* Slightly smaller text for mobile */
}

.social-media {
    gap: 8px; /* Reduce gap between icons for smaller screens */
}

.social-media a {
    font-size: 1rem; /* Adjust icon size for mobile */
    color: #60A5FA; /* Soft sky blue */
    text-decoration: none;
}


.social-media a:hover {
    text-decoration: underline; /* Underline on hover */
}


    .video-div iframe {
        height: 200px; /* Smaller height for mobile */
    }

    .hamburger {
        display: block; /* Show on mobile screens */
    }


    @media (max-width: 480px) {
        .navbar {
            flex-direction: column;
            align-items: flex-start;
        }
    
        .nav-menu {
            width: 40%;
        }
    
        .nav-toggle {
            font-size: 1.2em;
        }
    
        footer {
            padding: 8px; /* Further reduce padding on extra small screens */
        }
    
        .social-media a {
            font-size: 0.9rem; /* Reduce font size for icons */
        }
    
        footer p {
            font-size: 0.8rem; /* Smaller text for extra small screens */
        }
    }