/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header and Navigation Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures the navbar stays on top of other content */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    background-color: #fff; /* Button color */
    padding: 10px 20px;
    border-radius: 10px; /* Rounded corners */
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.nav-list a:hover {
    background-color: lightgrey; /* Darker shade for hover effect */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        width: 200px;
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .nav-list a {
        color: #fff;
        background-color: #444;
    }

    .nav-list a:hover {
        background-color: #555;
    }
}

/* Hero Section Styles */
.intro {
    text-align: center;
    padding: 0 20px;
    background-color: #f4f4f4;
    margin-top: 60px; /* To prevent content from being hidden behind the fixed navbar */
    display: flex;
    align-items: center; /* Align items to the bottom */
    justify-content: center; /* Center content horizontally */
}

.intro-text {
    margin-right: 40px; /* Adjusted value to control the space between text and image */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center text within the div */
}

.intro img {
    max-width: 300px;
    height: auto;
    align-self: flex-end; /* Align the image to the bottom */
}

.intro h1 {
    font-size: 2.5em;
}

.intro p {
    margin: 20px 0;
    font-size: 1.2em;
}

/* Content Section Styles */
.about {
    padding: 20px 25%;
    margin: 0 auto;
    background-color: lightgrey;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.about p {
    line-height: 1.6;
}

.links {
    text-align: center;
}

.youtube-button {
    display: inline-block;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid lightgrey; /* Thin border added */
}

.youtube-button:hover {
    background-color: lightgrey;
}

.youtube-button img {
    vertical-align: middle;
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #f4f4f4;
    padding: 10px;
    text-align: center;
    position: fixed; /* Fix the footer at the bottom of the viewport */
    bottom: 0; /* Position the footer at the bottom of the viewport */
    width: 100%; /* Ensure the footer spans the full width of the viewport */
}
