/* ========================================
   JaktLicens – Hero Section CSS
   ======================================== */

.wp-block-jaktlicens-hero,
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%238b735520" stroke-width="0.5"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

/* Rotating Badge */
.rotating-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    position: relative;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-text svg {
    width: 100%;
    height: 100%;
}

.rotating-text text {
    fill: var(--text-muted);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-center svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
}

/* Hero Typography */
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Hero CTA Items */
.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.hero-cta-item:hover {
    background: rgba(255,255,255,0.1);
}

.hero-cta-item .icon {
    width: 40px;
    height: 40px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.hero-cta-item .text {
    text-align: left;
}

.hero-cta-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta-item .title {
    color: var(--text-light);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-item {
        width: 100%;
        max-width: 300px;
    }
}
