/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header and Brand Title Styling */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #ffcc00;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.brand-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1c1c1c;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.brand-title:hover {
    transform: scale(1.1);
}

@media (min-width: 600px) {
    .brand-title {
        font-size: 3rem;
    }
}

@media (min-width: 900px) {
    .brand-title {
        font-size: 4rem;
    }
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 1.5em;
}

.nav-links a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    background-color: #ffcc00;
    color: #1c1c1c;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 5px;
    align-self: flex-start; /* Align to the start for mobile view */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1em 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1em;
        width: 100%;
        text-align: center;
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
    }

    .menu-toggle {
        display: block;
        order: -1; /* Display on the left side */
    }
}

/* Additional Styles for Header Image */
header.thumbnail {
    text-align: center;
    margin-top: 1em;
}

.hero-img {
    max-width: 95%;
    height: auto;
    border-radius: 10px;
}

/* Main Content Styling */
main {
    padding: 2em 1em;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2em;
    background: linear-gradient(to bottom, #ffcc00, #ffdd44);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero .iframe-container {
    position: relative;
    width: 96%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 1em;
}

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

.header .cta-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 0.8em 1.2em;
    background-color: #000;
    color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.header .cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.hero h2 {
    margin-top: 1em;
    color: #333;
}

.hero p {
    margin: 1em 0;
    color: #444;
}

.button {
    background-color: #ffcc00;
    color: #000;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ffd700;
}

/* Section Styling */
section {
    background-color: #222;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section h2 {
    margin-bottom: 1em;
    color: #ffcc00;
}

section ul {
    list-style: none;
}

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

blockquote {
    background-color: #444;
    border-left: 10px solid #ffcc00;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Contact Form Styling */
#contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

#contact-form label {
    grid-column: 1 / -1;
    font-weight: bold;
    margin-bottom: 5px;
}

#contact-form input, #contact-form button {
    padding: 10px;
    border: 2px solid #ffcc00;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1em;
    width: 100%;
}

#contact-form button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    grid-column: 1 / -1;
}

#contact-form button:hover {
    background-color: #ffd700;
}

#contact-form input:focus, #contact-form button:focus {
    outline: none;
    border-color: #ffd700;
}

@media (max-width: 768px) {
    #contact-form {
        grid-template-columns: 1fr;
    }
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: #ffcc00;
    position: relative;
    bottom: 0;
    width: 100%;
}
