/* =============================
   Hero Section Styles
   ============================= */
.hero-section {
    min-height: calc(100vh - 80px);
    padding-top: 2rem;
}

.hero-section__container {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    overflow: hidden;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100vw;
}


@media (min-width: 768px) {
    .hero-section__container {
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* Image Section */
.hero-section__image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-right: 0;
    z-index: 10;
}
@media (min-width: 768px) {
    .hero-section__image-wrapper {
        width: 50%;
        justify-content: flex-end;
        margin-bottom: 0;
        padding-right: 2.5rem;
    }
}

.hero-section__image-inner {
    position: relative;
    z-index: 10;
}

.hero-section__image {
    border-radius: 1rem;
    box-shadow: 0 10px 32px 0 rgba(0,0,0,0.18), 0 2px 4px 0 rgba(0,0,0,0.18);
    border: 4px solid #fff;
    width: 80%;
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

/* Content Section */
.hero-section__content {
    width: 100%;
    margin-left: 0;
    z-index: 10;
}
@media (min-width: 768px) {
    .hero-section__content {
        width: 50%;
        margin-left: 4rem;
    }
}

.hero-section__title {
    font-size: 2rem;
    font-weight: bold;
    color: #324057;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    border: none !important;
    z-index: 10;

}
@media (min-width: 768px) {
    .hero-section__title {
        font-size: 2.5rem;
        z-index: 10;
    }
}

.hero-section__title-gradient {
    background: linear-gradient(to right, #0284c7, #6238c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    z-index: 10;
}

.hero-section__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Button Group */
.hero-section__button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}
@media (min-width: 640px) {
    .hero-section__button-group {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}

.hero-section__button {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 24px 0 rgba(16, 185, 129, 0.15), 0 1.5px 4px 0 rgba(0,0,0,0.10);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 1rem;
}

.hero-section__button--found {
    background: linear-gradient(to right, #22c55e, #059669);
    color: #fff;
}
.hero-section__button--found:hover {
    background: linear-gradient(to right, #16a34a, #047857);
    transform: scale(1.05);
}

.hero-section__button--missing {
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: #fff;
}
.hero-section__button--missing:hover {
    background: linear-gradient(to right, #dc2626, #db2777);
    transform: scale(1.05);
}

.hero-section__button-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.20);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    border-radius: 1rem;
}
.hero-section__button:hover .hero-section__button-overlay,
.hero-section__button:focus .hero-section__button-overlay {
    opacity: 1;
}

.hero-section__button-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-section__button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.hero-section__button:hover .hero-section__button-icon {
    transform: rotate(12deg);
}

/* Responsive Utility */
@media (max-width: 767px) {
    .hero-section__image {
        margin-bottom: 0;
    }
}

.hero-section__order-image {
    order: 0;
}
.hero-section__order-content {
    order: 1;
    margin-right: 0;
}
@media (min-width: 768px) {
    .hero-section__order-image {
        order: 2;
    }
    .hero-section__order-content {
        order: 1;
        margin-right: 4rem;
    }
} 

.floating-background {
    z-index: 0 !important;
}
.hero-section__image-wrapper,
.hero-section__content {
    position: relative;
    z-index: 10;

} 

@media (max-width: 425px) {
    .hero-section__image-wrapper {
        margin-bottom: 1rem;
    }
    .hero-section__title {
        margin-bottom: 0.75rem;
    }
    .hero-section__subtitle {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-section__image {
        max-width: calc(100vw - 2rem);
        max-height: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
        height: calc(100vw - 2rem);
    }
}