/* ===== ALAP ===== */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3e8ff;
  color: #2c2c2c;
  line-height: 1.6;
}

/* ===== HEADER ===== */

header {
  text-align: center;
  padding: 40px;
  background: white;
}

/* ===== NAV (app-szerű gombok) ===== */

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background: white;
}

nav a {
  text-decoration: none;
  color: #2c2c2c;
  padding: 12px 16px;
  background: white;
  border-radius: 999px;
  border: 1px solid #e0d8f5;
  transition: 0.2s;
}

nav a:hover {
  background: #f7e8ff;
}

/* ===== OLDAL TARTALOM ===== */

section {
  max-width: 700px;
  margin: 30px auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.site-footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #444;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #d4a5e1;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    color: #777;
}

.nav-highlight {
    position: relative;
    padding-left: 34px;
}

.nav-highlight::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;

    background-image: url("../icon.png");
    background-size: cover;
    background-position: center;

    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}


.logo-top {
    display: inline-block;
    margin-bottom: 8px;
}

img.header-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    object-fit: cover;
}


/* ===== IDŐ A LÉLEKNEK OLDAL ===== */

.content-page{
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.8;
}

.program-cover{
    display: block;
    width: 340px;
    max-width: 90%;
    height: auto;
    margin: 0 auto 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.program-highlights{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin:25px 0 35px;
    font-weight:600;
    color:#5B21B6;
}

.program-highlights p{
    background:#F5F3FF;
    padding:12px 18px;
    border-radius:12px;
    margin:0;
}

.cta-button{
    display:inline-block;
    background:#6D28D9;
    color:#fff;
    text-decoration:none;
    padding:15px 32px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.cta-button:hover{
    background:#5B21B6;
    transform:translateY(-2px);
}

.content-page hr{
    border:none;
    height:1px;
    background:#E9D5FF;
    margin:45px 0;
}

.content-page h2{
    color:#5B21B6;
    margin-bottom:18px;
}

.content-page ul{
    padding-left:25px;
}

.content-page li{
    margin-bottom:10px;
}

.method-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.method-card h3 {
    margin-top: 0;
    font-size: 18px;
}

.method-card p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.home-info {
    margin: 8px 0 18px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}
