/* Orbán Dóra – testreszabások a Lovely Wedding sablon fölött */

p {
    font-size: 18px;
}

.nav-logo--text {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #2e4f42;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.footer-logo--text {
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.hero-photo {
    border-radius: 6px;
}

.service-signoff {
    text-align: center;
    font-style: italic;
    margin-top: 24px;
}

.blog-tags {
    text-align: center;
    color: #8a8a8a;
    font-size: 13px;
    margin-top: 8px;
}

.faq-intro,
.problem-list li {
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.problem-list li,
.content-text .problem-list li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.services__main-headline {
    font-size: 32px;
    font-weight: 400;
    color: #f3ead9;
    max-width: 640px;
    text-wrap: balance;
    margin: 0 auto 12px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 32px auto 8px;
    padding: 0 12px;
}

.problem-card {
    background: linear-gradient(160deg, rgba(247, 241, 228, 0.08), rgba(247, 241, 228, 0.03));
    border: 1px solid rgba(234, 201, 103, 0.22);
    border-radius: 10px;
    padding: 26px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    animation: problem-card-rise 0.6s cubic-bezier(.2,.8,.2,1) both;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 201, 103, 0.55);
    background: linear-gradient(160deg, rgba(247, 241, 228, 0.13), rgba(247, 241, 228, 0.04));
}

.problem-card__badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(234, 201, 103, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(7, 35, 15, 0.35);
}

.problem-card p {
    color: #f3ead9;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.problem-card:nth-child(1) { animation-delay: .02s; }
.problem-card:nth-child(2) { animation-delay: .09s; }
.problem-card:nth-child(3) { animation-delay: .16s; }
.problem-card:nth-child(4) { animation-delay: .23s; }
.problem-card:nth-child(5) { animation-delay: .30s; }
.problem-card:nth-child(6) { animation-delay: .37s; }

@keyframes problem-card-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .problem-card { animation: none; }
}

@media (max-width: 720px) {
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .services__main-headline { font-size: 26px; }
}

@media (max-width: 480px) {
    .problem-grid { grid-template-columns: 1fr; }
}

@media (min-width: 891px) {
    .gradient-wave-headlines__headline h1 {
        max-width: 60%;
    }
}

.blog-post-cover {
    margin-bottom: 8px;
    text-align: center;
}

.blog-post-cover img {
    width: auto;
    max-width: 100%;
    max-height: 480px;
    border-radius: 6px;
}

.hero-tone-warm {
    filter: sepia(0.45) saturate(1.3) brightness(1.05);
}
