/* Tudatalatti Hatalma előadás css - TUNING VERZIÓ */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 10px;
    background: linear-gradient(135deg, #f5f0fa 0%, #e8e0f0 100%);
    color: #1a1a2e;
}

/* Finom háttérminta */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(74, 35, 117, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 96, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    margin: 20px auto;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.2);
}

.content, .section .image {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    text-align: center;
}

.section .image {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
}

.section img:hover {
    transform: scale(1.02);
}

.section h1 {
    font-weight: lighter;
}

.section1 h1 {
	font-size: 3em;
    color: #3a2c7a;
    margin-bottom: 10px;
    font-weight: lighter;
    line-height: 1.2;
    text-align: left;
    text-shadow: 7px 3px 8px #b4b4b4;
}

.section1 h2 {
    font-size: 2em;
    color: #4a2375;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    padding-left: 20px;
}

.section1 strong {
    color: #ff6000;
    font-weight: 100;
}

.section1 img {
    max-width: 90%;
    border-radius: 24px;
}

.section1 {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    margin: 20px auto;
    max-width: 1200px;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.section1 .content {
    flex: 1 1 500px;
    margin: 20px;
    text-align: left;
    position: relative;
}

.section1 .content .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.section1 .content .icon:hover {
    opacity: 1;
}

.section1 .image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 20px auto;
}

.section2 {
    background: linear-gradient(135deg, #4a2375 0%, #2d154a 100%);
    color: #fff;
    text-align: center;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.section2::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section2 div {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section2 p {
    font-size: 1.7em;
    color: white;
    text-align: justify;
    hyphens: auto;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section3 ul {
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
    color: #2d2d44;
    list-style: none;
    padding-left: 20px;
}

.section3 ul li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 40px;
    font-size: 1.4em;
    line-height: 1.6;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}

.section3 ul li:hover {
    transform: translateX(8px);
    color: #4a2375;
}

.section3 ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4a2375, #7b4c9e);
    color: white;
    font-size: 0.9em;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.section3 ul li b {
    color: #ff6000;
    font-weight: 700;
}

.logo {
    text-align: center;
    margin-top: 40px;
}

.section1 .logo {
    text-align: left;
    margin-left: 100px;
    margin-top: 40px;
}

.logo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 3px solid white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.3);
}

.section5 .logo img {
    width: 100px;
    height: 100px;
}

.section3 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-radius: 32px;
}

.section3 .content-left, .section3 .content-right {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.section3 p {
    font-size: 1.5em;
    line-height: 1.5;
    color: #2d2d44;
}

.section4 {
    background: linear-gradient(135deg, #4a2375 0%, #2d154a 100%);
    color: #fff;
    text-align: center;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.section4 p {
    font-size: 1.7em;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.section5 form {
    background: white;
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.section5 form:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.section5 p {
    font-size: 1.5em;
    color: #2d2d44;
}

.section5 form div {
    margin-bottom: 20px;
}

.section5 form label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    font-size: 1.4em;
    color: #1a1a2e;
    font-weight: 500;
}

.section5 form input, .section5 form textarea, .section5 form select {
    width: calc(100% - 24px);
    padding: 12px;
    margin-top: 5px;
    border: 2px solid #e0d4f0;
    border-radius: 12px;
    background-color: #fefefe;
    font-size: 1.2em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.section5 form input:focus, .section5 form textarea:focus, .section5 form select:focus {
    border-color: #4a2375;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(74, 35, 117, 0.2);
    outline: none;
}

.section5 form input:hover, .section5 form textarea:hover, .section5 form select:hover {
    border-color: #9b7bc9;
}

.section5 form button, .button {
    background: linear-gradient(135deg, #4a2375 0%, #3a2c7a 100%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px;
    box-shadow: 0 4px 12px rgba(74, 35, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.section5 form button:hover, .button:hover {
    background: linear-gradient(135deg, #5e378a 0%, #4a2375 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 35, 117, 0.4);
}

.section5 form button:active, .button:active {
    transform: translateY(1px);
}

button {
    position: relative;
    overflow: hidden;
}

button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

button:hover::after {
    left: 100%;
}

input[readonly] {
    font-size: 1.4em !important;
    font-weight: bold;
    background-color: #f5f0fa !important;
    cursor: default;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #4a2375;
    border-radius: 6px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #4a2375;
    border-color: #4a2375;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
	left: 7px;
    top: 2px;
}

input[type="checkbox"]:hover {
    border-color: #ff6000;
    transform: scale(1.05);
}

label.required:after {
    content: " *";
    color: #ff6000;
    font-weight: bold;
    margin-left: 5px;
}

.section5 a {
    text-decoration: none;
    color: #4a2375;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.section5 a:hover {
    border-bottom-color: #ff6000;
}

.section6 {
    border-radius: 32px;
    padding-bottom: 50px;
}

.testimonial {
    border-left: 4px solid #ff6000;
    padding: 1.5rem;
    border-radius: 16px;
    font-style: italic;
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial::before {
    content: "“";
    font-size: 4rem;
    color: #ff6000;
    position: absolute;
    left: 16px;
    top: -8px;
    line-height: 1;
    opacity: 0.5;
    font-family: serif;
}

.testimonial p:last-child {
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    color: #e0d4f0;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 20px;
}

.testimonial__avatar {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial__avatar {
    transform: scale(1.05);
}

.testimonial__body p {
    margin: 0;
    line-height: 1.5;
}

.testimonial__name {
    font-weight: 700;
    margin-top: 0.75rem;
    color: #ffd9b5;
}

.avatar--lila { background: radial-gradient(120% 120% at 30% 20%, #9b6bff 0%, #5b35b2 60%, #3b2478 100%); }
.avatar--narancs { background: radial-gradient(120% 120% at 30% 20%, #ffb36b 0%, #e86d2d 60%, #a24316 100%); }
.avatar--kek { background: radial-gradient(120% 120% at 30% 20%, #7bc6ff 0%, #3b87d6 60%, #255a8e 100%); }

.testimonial__avatar svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f0eaf8 0%, #e8e0f0 100%);
    margin-top: 60px;
    line-height: 1.7em;
    font-size: 0.9em;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

footer a {
    text-decoration: none;
    color: #4a2375;
    font-weight: 500;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ff6000;
    text-decoration: underline;
}

.section.lila-background {
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a2375 0%, #2d154a 100%);
    border-radius: 32px;
}

.section.lila-background::before {
    content: "";
    background: url(../_images/brain.png) no-repeat right center;
    background-size: contain;
    background-position: top right;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    opacity: 0.15;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.section.lila-background .content {
    position: relative;
    z-index: 2;
}

.kezdunk {
    color: #ff6000;
    margin-bottom: 0px;
    font-weight: 100;
    letter-spacing: -0.01em;
}

.motivacios-valasz {
    background: #ffffff;
    border: 4px solid #ff6000;
    padding: 24px 36px;
    font-size: 1.2em;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    z-index: 9999;
    text-align: center;
    font-weight: 500;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.section-faq h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #3a2c7a 0%, #5e378a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.02em;
}

.faq-item {
    border-bottom: 1px solid rgba(74, 35, 117, 0.2);
    text-align: left;
    padding: 20px 0;
    transition: background 0.2s ease;
}

.faq-item:hover {
    background: rgba(74, 35, 117, 0.03);
    padding-left: 12px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 0.75rem;
    color: #4a2375;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    opacity: 0.9;
    color: #2d2d44;
}

/* Reszponzív finomítások */
@media (max-width: 1200px) {
    .section1 h1 {
        font-size: 3em;
    }

    .section1 h2 {
        font-size: 1.8em;
    }

    .section1 .logo {
        display: none;
    }
}

@media (max-width: 992px) {
    .section1 h1 {
        font-size: 2.8em;
        text-align: center;
    }

    .section1 h2 {
        font-size: 1.6em;
        text-align: center;
        border-left: none;
        border-top: 3px solid #ff6000;
        padding-top: 15px;
    }

    .section2 div {
        width: 100%;
    }

    .section {
        padding-left: 20px;
        padding-right: 20px;
        margin: 15px;
    }
    
    .section1 {
        padding: 30px;
        margin: 15px;
    }
}

@media (max-width: 768px) {
    .section1 h1 {
        font-size: 2.2em;
    }

    .section1 h2 {
        font-size: 1.4em;
    }

    .section.lila-background::before {
        background-size: 120px;
        top: -20px;
        right: -10px;
        bottom: auto;
        height: 120px;
        opacity: 0.2;
    }
    
    .section2 p, .section4 p {
        font-size: 1.3em;
    }
    
    .section3 ul li {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .section1 h1 {
        font-size: 1.8em;
    }

    .section1 h2 {
        font-size: 1.2em;
    }
    
    .section {
        padding: 20px;
    }
    
    .section5 form button, .button {
        padding: 12px 24px;
        font-size: 1em;
    }
}

/* Görgetősáv testreszabása */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #e8e0f0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a2375, #7b4c9e);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5e378a, #9b6bff);
}