/* General Styles */
@import url('/css/navbar.css');

body {
    font-family: 'lato', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.65;
    background-color: #f5f5f5;
    font-size: 16px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 56px;
    margin-top: 0;
    color: #fdad01;
    text-align: center;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #fdad01;
    margin-top: 80px;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 24px;
    color: #333;
    letter-spacing: -0.01em;
    font-weight: 700;
}

p {
    margin-bottom: 24px;
    margin-top: 0;
    color: #000;
    line-height: 1.65;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

a {
    color: #fdad01;
    /* Change link color */
}

a:hover {
    text-decoration: underline;
    /* Optional hover effect */
}

@font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato-Regular.woff2') format('woff2'),
        url('/fonts/Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.paragraph-container {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 40px;
}

.learn-more-btn {
    background-color: #FDAD01;
    border: none;
    color: #111;
    padding: 16px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-top: 32px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.learn-more-btn:hover {
    background-color: #777;
    color: #FDAD01;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

/* Contact Section (Shared) */
.contact {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: #333;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 48px;
    margin-top: 0;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1000px;
    width: 100%;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact h3 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
    color: #ccc;
}

.contact a {
    background-color: #FDAD01;
    border: none;
    color: #111;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-width: 200px;
}

.contact a:hover {
    background-color: #fff;
    color: #333;
    text-decoration: none;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    filter: brightness(70%);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 0;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    z-index: -1;
}

.hero-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #fdad01;
    margin-top: 8px;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.here-content h3 {
    font-size: 1rem;
    margin-top: 32px;
}

.hero-content p {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Quicklinks Section */
.quicklinks-section {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quicklinks-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quicklink-button {
    padding: 12px 24px;
    margin-right: 8px;
    background-color: #fdad01;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.quicklink-button:hover {
    background-color: #999;
}

/* Media Queries for Global Elements */
@media screen and (max-width: 800px) {
    .navbar {
        padding: 5px 5px;
        display: flex;
        align-items: normal;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
    }

    .top-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .button-menu {
        list-style-type: none;
        padding: 0;
    }

    .button-menu a {
        display: flex;
        background-color: #FFF;
        color: #333;
        text-align: center;
        padding: 10px 20px;
        text-decoration: none;
        margin: 5px;
        border-radius: 5px;
    }

    .button-menu a:hover {
        background-color: #333;
        color: #fff;
    }

    .desktop-nav {
        list-style-type: none;
        padding: 0;
        display: none;
    }

    .button-nav {
        width: 100%;
        display: none;
        padding: 2px 2px;
    }

    .button-nav a {
        display: block;
        width: 100%
    }

    .quicklinks-container {
        display: grid;
        width: 100%;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .button-nav {
        width: 100%;
        padding: 2px 2px;
        align-items: center;
    }

    .button-footer {
        display: grid;
        text-align: center;
        grid-template-columns: auto auto;
    }

    #chat-window {
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
    }

    #chat-header {
        border-radius: 0;
    }

    #chat-input {
        border-radius: 0 0 0 0;
    }

    #chat-bubble {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .quicklink-button {
        padding: 8px 16px;
        margin-right: 8px;
        background-color: #fdad01;
        color: white;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        border: none;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 8px;
    }

    .quicklinks-container {
        display: grid;
        width: 100%;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
    }
}

/* Footer Styles */
.footer {
    padding: 80px 0 0;
    background-color: #000;
    color: #aaa;
    margin-top: 0;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 64px;
}

.footer-logo img {
    height: auto;
    width: 200px;
    max-width: 100%;
    border-radius: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-column h4 {
    color: #fdad01;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fdad01;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 32px 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #555;
    font-size: 0.875rem;
}

/* Footer Media Queries */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-container {
        padding: 0 24px 64px;
    }

    .footer {
        padding: 64px 0 0;
    }

    .footer-logo {
        margin-bottom: 48px;
    }

    .footer-logo img {
        width: 160px;
    }
}