/* ==========================================================================
   Custom Hero Section Styles
   ========================================================================== */

.gh-hero-custom {
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gh-hero-custom {
        padding: 0 6rem;
    }
}

.gh-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .gh-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Content Section */
.gh-hero-content {
    text-align: center;
}

@media (min-width: 768px) {
    .gh-hero-content {
        text-align: left;
    }
}

/* Badge */
.gh-hero-badge {
    margin-bottom: 1.5rem;
}

.gh-badge-text {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: rgb(37, 99, 235);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
}

:is(.dark *) .gh-badge-text {
    background: rgba(59, 130, 246, 0.2);
    color: rgb(147, 197, 253);
}

/* Title */
.gh-hero-title {
    font-size: 42px !important;
    line-height: 1.2;
    font-weight: 800 !important;
    margin-bottom: 1.5rem;
    color: var(--color-darkgrey);
}

@media (min-width: 768px) {
    .gh-hero-title {
        font-size: 52px !important;
    }
}

@media (min-width: 1024px) {
    .gh-hero-title {
        font-size: 64px !important;
    }
}

.gh-hero-highlight {
    color: rgb(37, 99, 235);
}

:is(.dark *) .gh-hero-highlight {
    color: rgb(96, 165, 250);
}

/* Description */
.gh-hero-description {
    font-size: 20px !important;
    line-height: 1.75;
    color: var(--color-secondary-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .gh-hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .gh-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Action Buttons */
.gh-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .gh-hero-actions {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .gh-hero-actions {
        justify-content: center;
    }
}

.gh-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 18px !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gh-hero-button.gh-button {
    background: rgb(37, 99, 235);
    color: white;
    border: none;
}

.gh-hero-button.gh-button:hover {
    background: rgb(29, 78, 216);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.gh-hero-button.gh-button-secondary {
    background: transparent;
    color: rgb(37, 99, 235);
    border: 2px solid rgb(37, 99, 235);
}

.gh-hero-button.gh-button-secondary:hover {
    background: rgb(37, 99, 235);
    color: white;
    transform: translateY(-2px);
}

/* Social Proof */
.gh-hero-social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .gh-hero-social-proof {
        justify-content: center;
    }
}

.gh-hero-avatars {
    display: flex;
    margin-left: -8px;
}

.gh-avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -8px;
}

:is(.dark *) .gh-avatar {
    border-color: var(--color-darkmode);
}

.gh-hero-rating {
    text-align: left;
}

.gh-stars {
    color: rgb(250, 204, 21);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 4px;
}

.gh-stars span {
    margin-right: 2px;
}

.gh-rating-text {
    font-size: 15px;
    color: var(--color-secondary-text);
    margin: 0;
}

/* Image Section */
.gh-hero-image-wrapper {
    position: relative;
    order: -1;
}

@media (min-width: 768px) {
    .gh-hero-image-wrapper {
        order: 0;
    }
}

.gh-hero-image-container {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gh-hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gh-hero-image:hover {
    transform: scale(1.05);
}

/* Decorative Blobs */
.gh-hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.gh-hero-blob-1 {
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(191, 219, 254, 0.8);
}

:is(.dark *) .gh-hero-blob-1 {
    background: rgba(30, 58, 138, 0.3);
}

.gh-hero-blob-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(254, 215, 170, 0.8);
}

:is(.dark *) .gh-hero-blob-2 {
    background: rgba(124, 45, 18, 0.3);
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.gh-hero-image-wrapper {
    animation: float 6s ease-in-out infinite;
}
