/* ============================================
   Hero Section — Full Width, Animated
   ============================================ */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    transition: transform 0.5s ease-out;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.1) 85%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.hero-content {
    max-width: 650px;
}

/* Orange location text */
.hero-location {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fca311;
    margin-bottom: 4px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 0.88rem;
    border-radius: 6px;
}

/* Google Rating */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-rating-google {
    display: flex;
    align-items: center;
}

.hero-rating-score {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.hero-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-rating-stars svg {
    width: 17px;
    height: 17px;
    fill: #F37021;
}

.hero-rating-count {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fw-medium);
}
