/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 10px 0;
}

/* Logo Styles */
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.logo img {
    max-width: 150px; /* Adjust the size of the logo */
    height: auto;
}

/* Header Image Styles */
.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #444;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

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

/* Home Page Styles */
.home-main {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr; /* 1/6 left, 5/6 center, 1/6 right */
    gap: 20px;
    padding: 20px;
}

.left-column, .right-column {
    /* Empty columns for spacing */
}

.center-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center-column h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.center-column p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Video Container Styles */
.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page Styles */
.about-main {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr; /* 1/6 left, 5/6 center, 1/6 right */
    gap: 20px;
    padding: 20px;
}

.about-main .center-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-main h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.about-main p {
    font-size: 1.1em;
    line-height: 1.8;
}

.about-main ul {
    list-style: none;
    padding: 0;
}

.about-main ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.about-main ul li strong {
    color: #0073e6;
}

/* Contact Page Styles */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr; /* 1/6 left, 5/6 center, 1/6 right */
    gap: 20px;
    padding: 20px;
}

.contact-main .center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-main h1 {
    margin-bottom: 20px;
}

.contact-main form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-main form label {
    font-weight: bold;
}

.contact-main form input,
.contact-main form textarea,
.contact-main form button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-main form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-main form button {
    background: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-main form button:hover {
    background: #005bb5;
}

/* Cloudflare Turnstile Widget */
.cf-turnstile {
    margin: 15px 0;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section.social .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-section.social .social-icons a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-section.social .social-icons a:hover {
    color: #0073e6; /* Change color on hover */
}

.footer-bottom {
    background: #222;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

/* Back to Top Button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

#back-to-top:hover {
    background: #005bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-main, .about-main, .contact-main {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .left-column, .right-column {
        display: none; /* Hide empty columns on smaller screens */
    }

    .center-column {
        padding: 0 20px;
    }

    .center-column h1 {
        font-size: 2em;
    }

    .center-column p, .about-main p, .about-main ul li {
        font-size: 1em;
    }

    .video-container {
        padding-top: 75%; /* Adjust aspect ratio for smaller screens */
    }

    .contact-main form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 80px; /* Even smaller logo for very small screens */
    }

    .video-container {
        padding-top: 100%; /* Adjust aspect ratio for very small screens */
    }

    .footer-section h3 {
        font-size: 1em;
    }

    .footer-section p, .footer-section ul li {
        font-size: 0.9em;
    }
}