/* ============================================================
   HERO — Editorial split layout, modern typography, glass showcase
   ============================================================ */

.hero {
    min-height: 100dvh;
    padding-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;

    /* Base dark image background */
    background:
        linear-gradient(
            to bottom,
            rgba(10, 10, 10, 0.40) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(10, 10, 10, 1) 100%
        ),
        url('https://images.unsplash.com/photo-1565058379802-bbe93b2f703a?w=1920')
            center / cover no-repeat;
}

/* Vignette edges (darkening sides) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, transparent 20%, rgba(10,10,10,0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Interactive spotlight follow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 40%),
        rgba(249, 106, 44, 0.08),
        transparent 80%
    );
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.hero:hover::before {
    opacity: 1;
}

/* Subtle tech-art grid background */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Glowing Blobs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: var(--glow-orange);
    top: 5%;
    left: -150px;
    animation: pulse-glow 9s ease-in-out infinite alternate;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--glow-violet);
    bottom: -100px;
    right: -100px;
    animation: pulse-glow 13s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: var(--glow-amber);
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    opacity: 0.45;
}

/* Content Container & Grid */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--s-6) var(--container-pad);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--s-6);
    align-items: center;
    width: 100%;
}

/* ===== LEFT COLUMN: TEXTS & CTAS ===== */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Pill status badge */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(249, 106, 44, 0.09);
    border: 1px solid rgba(249, 106, 44, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ember-2);
    margin-bottom: var(--s-4);
    box-shadow: 0 4px 12px rgba(249, 106, 44, 0.06);
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--ember);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-glow 2s infinite;
}

/* Hero Title styling */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, var(--text-6xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 var(--s-3);
    animation: fadeInUp 0.8s var(--ease-out) 0.08s both;
}

.hero-title .gothic-text {
    font-family: 'UnifrakturCook', serif;
    font-weight: 700;
    color: var(--ember);
    text-shadow: 0 0 15px rgba(249, 106, 44, 0.35);
    letter-spacing: 1px;
    display: block;
    margin-top: 0.2rem;
}

/* Subtitle styling */
.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-lg);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 var(--s-5);
    animation: fadeInUp 0.8s var(--ease-out) 0.16s both;
}

/* Buttons container */
.hero-buttons {
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
    margin-bottom: var(--s-5);
    animation: fadeInUp 0.8s var(--ease-out) 0.24s both;
}

.hero-buttons .btn {
    padding: 0.85rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Trust/Stats indicators */
.hero-trust {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: var(--s-3);
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 0.8s var(--ease-out) 0.32s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.48);
}

.trust-item i {
    color: var(--ember);
    font-size: 0.95rem;
}

.trust-item strong {
    color: #fff;
}

/* ===== RIGHT COLUMN: SIGNATURE ARTWORK SHOWCASE ===== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeIn 1.2s ease-out 0.40s both;
}

.showcase-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 330px;
    aspect-ratio: 4/5;
    animation: float 6s ease-in-out infinite;
}

/* Glow aura behind card */
.showcase-glow {
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--ember), #e6005c);
    filter: blur(28px);
    opacity: 0.2;
    border-radius: var(--radius-lg);
    z-index: 0;
    transition: opacity 0.5s ease;
}

.showcase-card-wrapper:hover .showcase-glow {
    opacity: 0.35;
}

/* Main glass card container */
.showcase-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 12px;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.55);
}

/* Tattoos image styles */
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.88) contrast(1.02);
}

.showcase-card-wrapper:hover .showcase-img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.05);
}

/* Top glass pill badge */
.showcase-badge-top {
    position: absolute;
    top: var(--s-2);
    right: var(--s-2);
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--smoke);
    padding: 0.4rem 0.85rem;
    font-size: 0.68rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

/* Bottom overlay info banner */
.showcase-info {
    position: absolute;
    bottom: var(--s-2);
    left: var(--s-2);
    right: var(--s-2);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.info-style {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.info-artist {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Floating Badges styles */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.badge-1 {
    top: 18%;
    left: -55px;
}

.badge-2 {
    bottom: 18%;
    right: -55px;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(249, 106, 44, 0.14);
    color: var(--ember);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(249, 106, 44, 0.1);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.badge-text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Scroll indicator bounce */
.scroll-indicator {
    position: absolute;
    bottom: var(--s-4);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    animation: bounce 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.scroll-indicator:hover {
    background: rgba(249, 106, 44, 0.15);
    color: var(--ember-2);
}

/* ============================================================
   RESPONSIVE OPTIMIZATIONS (TABLETS & MOBILE)
   ============================================================ */

/* Tablet size adjustments for floating badges */
@media (max-width: 992px) {
    .badge-1 {
        left: -30px;
    }
    .badge-2 {
        right: -30px;
    }
}

/* Stacking for medium screens */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + var(--s-4));
        min-height: auto;
        padding-bottom: var(--s-6);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--s-5);
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: var(--text-base);
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }

    .hero-trust {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-right {
        margin-top: var(--s-2);
    }

    .showcase-card-wrapper {
        max-width: 280px;
    }

    .badge-1 {
        left: -15px;
        top: 15%;
    }

    .badge-2 {
        right: -15px;
        bottom: 12%;
    }
}

/* Portrait mobile optimization */
@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--header-height) + var(--s-3));
        padding-bottom: var(--s-5);
    }

    .hero-title {
        font-size: clamp(2.2rem, 9.5vw, 2.7rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--s-2);
    }

    .hero-buttons .btn {
        max-width: 100%;
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }

    .badge-1 {
        left: -10px;
    }

    .badge-2 {
        right: -10px;
    }
}
