/* Color Variables */
:root {
    --primary-green: #9ED886;
    --accent-green: #4F9D5E;
    --black: #000000;
    --white: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: black;
    color: white;
}

/* Background Overlay */
.hero-background-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    max-width: 56rem;
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 7rem;
    }
}

/* Hero Title Accent */
.hero-title-accent {
    color: var(--accent-green);
    display: inline-block;
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-green);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 1rem;
    group: true;
}

.hero-button:hover {
    background-color: var(--white);
}

/* Button Text */
.button-text {
    margin-right: 1rem;
}

/* Button Arrow Circle */
.button-arrow-circle {
    background-color: var(--black);
    color: var(--primary-green);
    border-radius: 9999px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-button:hover .button-arrow-circle {
    background-color: var(--accent-green);
    color: var(--white);
}

/* Button Arrow Icon */
.button-arrow-icon {
    height: 1rem;
    width: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-button {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .button-text {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-button {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .button-arrow-icon {
        height: 0.875rem;
        width: 0.875rem;
    }
}
