/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}img{border-style:none}[hidden]{display:none}

/* ── Papp Rudolf — Informatikai Szolgáltatások ── */

:root {
    --purple:       #430e77;
    --purple-light: #5b1a9e;
    --green:        #16a34a;
    --green-light:  #22c55e;
    --text:         #ffffff;
    --text-muted:   rgba(255,255,255,.65);
    --font:          'Roboto Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    min-height: 100vh;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url('img/bill.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67,14,119,.62) 0%, rgba(30,5,50,.52) 50%, rgba(15,3,25,.42) 100%);
}

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2.8rem;
    max-width: 600px;
    width: 90%;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
            backdrop-filter:   blur(12px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.hero__badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: .45rem 1.2rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
}

.hero__name {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text);
    margin-top: 1.6rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero__divider {
    width: 48px;
    height: 3px;
    margin-top: 1.6rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--green), rgba(255,255,255,.5));
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1.8rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: .7rem 1.8rem;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 4px 20px rgba(22,163,74,.45);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.hero__cta:hover,
.hero__cta:focus-visible {
    transform: translateY(-2px);
    background: var(--purple);
    box-shadow: 0 6px 28px rgba(67,14,119,.55), 0 0 0 2px var(--green-light);
}

.hero__phone-icon {
    stroke: #e2d5f3;
}

.hero__address {
    margin-top: 1.4rem;
    font-size: .95rem;
    font-weight: 300;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .4rem;
    letter-spacing: .02em;
}

.address-icon {
    stroke: var(--text-muted);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero__content {
        width: auto;
        padding: 3.4rem 4rem;
    }
}
