/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #7fff00, #9370db); /* Green to purple gradient */
    color: #000; /* Black text for readability */
}

header {
    background: #4caf50; /* Vibrant green */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #800080; /* Bold purple for contrast */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.5); /* Light, semi-transparent background */
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

section:hover {
    transform: scale(1.02); /* Slight zoom effect */
    background-color: rgba(255, 255, 255, 0.7); /* Lightening effect */
}

h2 {
    color: #800080; /* Purple headers */
}

/* About Section Image Styling */
#about-content img {
    width: 100%;
    max-width: 750px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Video Gallery Styles */
#video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.video-item {
    text-align: center;
    max-width: 560px;
}

.video-item iframe {
    border: 3px solid #4caf50; /* Green border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-item p {
    margin-top: 10px;
    font-size: 1.2em;
    color: #800080; /* Purple captions */
}

/* Button Styles */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.button {
    background-color: #4caf50; /* Vibrant green */
    color: #ffffff; /* White text */
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
    transform: scale(1.1); /* Zoom-in effect on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.button:active {
    transform: scale(0.95); /* Press-down effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Pop-Up Styling */
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#popup h2 {
    color: #800080; /* Purple text */
    margin-bottom: 10px;
}

#close-popup {
    background: #4caf50; /* Green button */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

#close-popup:hover {
    background: #45a049; /* Darker green on hover */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px;
    background: #4caf50; /* Green */
    color: #ffffff; /* White text */
}
