/* ===================== */
/* RÓLAM OLDAL */
/* ===================== */

.about-hero {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #2b0f2f, #3d1445);
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245,197,66,0.15), transparent 35%);
}

.about-container {
    position: relative;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(245,197,66,0.25);
    border: 4px solid rgba(245,197,66,0.25);
}

.about-tag {
    display: inline-block;
    background: rgba(245,197,66,0.15);
    color: #f5c542;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 24px;
}


@media (max-width: 950px) {
    .about-tag {
    display: inline-block;
    background: rgba(245,197,66,0.15);
    color: #f5c542;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
}
}


.about-intro h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
}

.about-content {
    max-width: 1100px;
    margin: auto;
    padding: 100px 20px;
}

.about-card {
    background: #fff;
    padding: 45px;
    margin-bottom: 35px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-left: 6px solid #f5c542;
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card h2 {
    color: #67047a;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-card p,
.about-card li {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.about-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.about-highlight {
    background: linear-gradient(135deg, #f5c542, #ffd86b);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    color: #2b0f2f;
    margin: 70px 0;
}

.about-highlight h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-highlight p {
    font-size: 20px;
}

.about-closing {
    text-align: center;
    padding: 50px 20px;
}

.about-closing h2 {
    color: #67047a;
    font-size: 36px;
    margin-bottom: 30px;
}

/* MOBIL */

@media (max-width:768px){

    .about-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
    }

    .about-intro h1{
        font-size:34px;
    }

    .about-card{
        padding:25px;
    }

    .about-highlight{
        padding:35px 20px;
    }

    .about-highlight h2{
        font-size:26px;
    }
}