/* Hero Banner Component Styles */

.hero-banner {
    padding: 60px 20px;
    overflow: hidden;
}

.hero-banner .hero-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.hero-banner .hero-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-banner .hero-banner-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 100px;
    width: fit-content;
    border: 1px solid #FBF3DD;
    background: var(--light-orange);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.hero-banner .rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
    display: none;
}

.hero-banner .rating-stars .star-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.hero-banner .rating-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--title-color);
}

.hero-banner .hero-banner-description {
    font-size: 22px;
    line-height: 1.5;
    color: var(--body-color);
    font-weight: 400;
}

.hero-banner .hero-banner-description p {
    margin: 0;
}
.hero-banner .hero-banner-description p + p {
    margin-top: 20px;
}


.hero-banner .hero-banner-description strong {
    font-weight: 600;
    color: #333;
}

.hero-banner .cta-button {
    margin-top: 30px;
}

/* Right Image Styles */
.hero-banner .hero-banner-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}
.hero-banner .hero-banner-image::before {
    content: '';
    display: block;
    padding-top: 67.1698%;
}

.hero-banner .hero-banner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1799px) {
    .hero-banner .hero-banner-content {
        gap: 16px;
    }
    .hero-banner .cta-button {
        margin: 0;
    }
    .hero-banner .hero-banner-description {
        font-size: 20px;
    }
    .hero-banner .hero-banner-description p + p {
        margin-top: 16px;
    }
}
@media (max-width: 1439px) {

}
@media (max-width: 1239px) {

}
@media (max-width: 1024px) {
    .hero-banner .hero-banner-container {
        gap: 40px;
    }
    
    .hero-banner .hero-banner-heading {
        font-size: 48px;
    }
    
    .hero-banner .hero-banner-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-banner .hero-banner-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-banner .hero-banner-heading {
        font-size: 36px;
    }
    
    .hero-banner .hero-banner-description {
        font-size: 16px;
    }
    
    .hero-banner .hero-banner-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-banner .hero-banner-image {
        order: -1;
    }
    .hero-banner .cta-button {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 30px 0;
    }
    
    .hero-banner .hero-banner-heading {
        font-size: 28px;
    }
    
    .hero-banner .hero-banner-rating {
        padding: 10px 16px;
        gap: 8px;
        width: 100%;
        flex-direction: column;
    }
    
    .hero-banner .rating-stars {
        gap: 3px;
    }
    
    .hero-banner .rating-stars .star-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-banner .rating-text {
        font-size: 14px;
    }
}

