/* styles.css */
:root {
    --primary-color: #FF9F1C;
    --secondary-color: #45B7D1;
    --text-color: #2B2D42;
    --background-color: #F8F9FA;
    --accent-color: #E63946;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #FFD700;
    color: var(--primary-color);
}

main {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

#hero {
    width: 100%;
    min-height: 100vh;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#hero h1 {
    font-size: 3.5rem;
    color: #FF9F1C;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 2rem;
}

#hero h2 {
    font-size: 2.5rem;
    color: #2B2D42;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 506px; /* 16:9 aspect ratio for 900px width */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    #hero h1 {
        font-size: 3rem;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .video-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    #hero {
        min-height: auto;
        padding: 4rem 0;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.75rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    .video-container iframe {
        height: 250px;
    }
}