/* Global */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #000000;
}

a {
    color: #abce39;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #abce39;
}

.logo {
    height: 55px;
}

.main-nav a {
    margin-left: 20px;
    font-weight: 500;
}

/* Content */
.content {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

h1, h2 {
    color: #abce39;
}

.brand-rect {
    background: #abce39;
    color: #111;
    padding: 10px 20px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    border-radius: 4px;
}

.hero-banner-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-banner {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    border-bottom: 2px solid #abce39;
}

.hero-banner-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-banner-wide {
    width: 100%;
    height: 360px; /* or any height you prefer */
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .main-nav a {
        margin-left: 0;
        margin-right: 15px;
        display: inline-block;
        margin-top: 10px;
    }

    .logo {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .hero-banner,
    .hero-banner-wide {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-banner-full {
        height: 100vh; /* already good */
        object-position: center;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 15px;
        max-width: 100%;
    }

    h1, h2 {
        font-size: 1.6rem;
    }

    .brand-rect {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 15px;
        font-size: 0.9rem;
    }
}

.btn {
    background: #abce39;
    color: #111;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

.btn:hover {
    background: #ffb84d;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #ccc;
    color: #000000;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    background: transparent; /* make background transparent */
    border-top: 2px solid #abce39;
    margin-top: 40px;
    color: #000000;
}