/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: aqua; /* Aqua background */
    color: #000; /* Black text */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */
}

header {
    background-color: #000; /* Black header */
    color: #fff; /* White text */
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /* Default: horizontal layout for desktop */
}

header .logo img {
    height: 50px;
    margin-right: 10px; /* Space between logo and title */
}

header h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

nav ul li {
    margin: 0 15px; /* Spacing between nav items */
}

nav ul li a {
    color: #fff; /* White text for links */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; /* Default font size for desktop */
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    background-color: #fff; /* White background for content */
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1; /* Allow main content to grow and push footer to the bottom */
}

footer {
    background-color: #000; /* Black footer */
    color: #fff; /* White text */
    text-align: center;
    padding: 20px 0; /* Increased padding for better spacing */
    position: relative; /* Default position */
    width: 100%;
    bottom: 0;
}

footer .social-media {
    margin-bottom: 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px; /* Increased spacing between links */
    font-weight: bold;
    font-size: 16px; /* Larger font size for better visibility */
}

footer .social-media a:hover {
    text-decoration: underline;
}

/* Plugin Details Styling */
.plugin-details {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plugin-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.plugin-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}
/* Contact Form Styles */
#contactForm {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2c3e50;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"] {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #1a252f;
}

/* Confirmation Message */
#confirmationMessage {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}
/* Add this to your existing CSS */
#videos {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-item {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: scale(1.05);
}

.video-item img {
    width: 100%;
    height: auto;
}

.video-item p {
    padding: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}
/* Custom CSS for video container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; /* Add some space between video containers */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom CSS for latest video container */
.latest-video {
    background-color: #e0f7fa; /* Light blue background for latest video */
}

/* Custom CSS for previous videos container */
.previous-videos {
    background-color: #f1f8e9; /* Light green background for previous videos */
}

/* Custom CSS for video thumbnail */
.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}
/* Custom CSS for redirect button */
.redirect-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff; /* Blue background */
    color: #fff; /* White text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.redirect-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
/* Gray Background Box for Plugin, File, and Map Details */
.plugin-details, .file-details, .map-details {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.plugin-details h3, .file-details h3, .map-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333; /* Dark text for heading */
}

.plugin-details p, .file-details p, .map-details p {
    font-size: 16px;
    color: #555; /* Slightly lighter text for description */
    margin-bottom: 15px;
}
