/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('background1.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
    margin: 0;
}


/* Header */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 50px;
}

.site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-title h1 {
    font-size: 2em;
    color: white;
    margin: 0;
    white-space: nowrap;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #28a745;
}


/* Hero Section */
.hero {
    background-color: rgba(255, 255, 255, 0.9); /* soft white overlay */
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    background-color: rgba(255, 255, 255, 0.9); /* soft white overlay */
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-container video {
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    height: auto;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}


.cta-container {
    margin-top: 30px;
}

.cta-button {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background-color: rgba(26, 26, 26, 0.95); /* slightly transparent black */
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9em;
    border-radius: 8px;
}


footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

footer .footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer .footer-links ul li a {
    color: white;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

footer .footer-links ul li a:hover {
    color: #28a745;
}

footer .social-links {
    margin: 20px 0;
}

footer .social-links a {
    margin: 0 15px;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #28a745;
}
