/* belso valtozok */
:root {
    --primary-color: #1a365d;
    --secondary-color: #ffffff;
    --accent-color: #2b6cb0;
    --text-color: #2d3748;
    --background-color: #f7fafc;
}

/* header */
#toptext {
    background: var(--primary-color) url('../tartalom/kepek/dark_meeting.jpg') center/cover;
    color: var(--secondary-color);
    height: 70vh;
    padding: 3rem 1rem;
    position: relative;
    margin-bottom: 2rem;
}

#jump {
    color: var(--accent-color) !important;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
}

header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
header h2 { font-size: 2rem; margin-bottom: 1.5rem; }
header p { font-style: italic; margin-bottom: 2rem; }
header a {
    display: inline-block;
    color: var(--secondary-color) !important;
    text-decoration: underline;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    transition: opacity 0.3s ease;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

/* main */
main {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 1rem;
    background-color: var(--background-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.col-12 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    margin: 0;
}

/* lista es reszletek */
h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

ol {
    list-style-position: inside;
    margin: 2rem 0;
}

li { margin-bottom: 2rem; }
p { margin-bottom: 1rem; line-height: 1.8; }
.content-col { padding: 1rem; }