/* Tudatalatti Hatalma előadás css*/
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #f0f0f0;
    color: #333;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background-color: white;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	max-width:1200px;
}

.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: 10px;
}

.section h1 {
    font-weight: lighter;
    text-shadow: 4px 4px 3px #2a0949;
}

.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: #5669a3;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
}

.section1 strong {
    color: ##3a2c7a;
}

.section1 img {
    max-width: 90%;
}


.section1 {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background-color: white;
    margin: 20px auto;
    max-width: 1200px;
    align-items: flex-start;
    justify-content: space-between;
	border-top-right-radius:20px;
	border-top-left-radius:20px;
}

.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;
}
.section1 .image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* ez viszi fel a képet a box tetejére */
    margin: 20px auto;
}

.section2 {
    background-color: #4a2375;
    color: #fff;
    text-align: center;
}

.section2 div {
    width: 80%;
    margin: 0 auto;
}

.section2 p {
    font-size: 1.7em;
    color: white;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.section3 ul {
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
    color: #555;
    list-style: none;
    padding-left: 20px;
}

.section3 ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 35px;
    font-size: 1.4em;
    line-height: 1.6;
}

.section3 ul li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0;
    color: #578979;
    font-size: 1.2em;
}

.section3 ul li b {
    color: #28a745;
}

.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;
}

.section5 .logo img {
	width: 100px;
	height: 100px;
}

.section3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section3 .content-left, .section3 .content-right {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.section3 p {
    font-size: 1.5em;
}

.section4 {
    background-color: #4a2375;
    color: #fff;
    text-align: center;
}

.section4 p {
    font-size: 1.7em;
}


.section5 form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

.section5 p {
    font-size: 1.5em;
}

.section5 form div {
    margin-bottom: 15px;
}

.section5 form label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    font-size: 1.4em;
    color: #333;
}

.section5 form input, .section5 form textarea, .section5 form select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.section5 form input:focus, .section5 form textarea:focus, .section5 form select:focus {
    border-color: #4a2375;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(74, 35, 117, 0.5);
    outline: none;
}

.section5 form button, .button {
    background-color: #4a2375;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
	margin: 30px;
}

.section5 form button:hover, .button:hover {
    background-color: #3a2c7a;
}

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.4), transparent);
  transition: all 0.6s;
}

button:hover::after {
  left: 100%;
}

input[readonly] {
    font-size: 1.4em !important;
    font-weight: bold;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e5cf93;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked::after {
	content: "✔";
    color: #2b2d2e;
    font-size: 16px;
    position: absolute;
    left: 4px;
    top: -2px;
}
label.required:after {
    content: " *";
    color: #ff6000;
    font-weight: bold;
    margin-left: 5px;
}

.section5 a {
	text-decoration:none;
	color: #45aedc;
}

.section6 {
	border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
	padding-bottom:50px
}

.testimonial {
    background: rgb(122 148 197 / 15%);
    border-left: 4px solid #ff6000;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-style: italic;
    position: relative;
    width: 100%;
}

.testimonial::before {
  content: "“";
  font-size: 3rem;
  color: #ff6000;
  position: absolute;
  left: 10px;
  top: -10px;
  line-height: 1;
}

.testimonial p:last-child {
  font-style: normal;
  font-weight: bold;
  margin-top: 0.75rem;
  color: #c4c4c4;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin-top: 150px !important;
	line-height: 1.7em;
	font-size:0.9em;
	max-width:1200px;
}

footer a {
	text-decoration:none;
	color:#090aff;
}

.section.lila-background {
    color: #fff;
    position: relative;
    overflow: hidden;
	background: linear-gradient(to bottom, #61388f, #3c2453);
}

.section.lila-background::before {
    content: "";
    background: url(../_images/brain.png) no-repeat right center;
    background-size: contain;
    background-position: top;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    opacity: 0.5;
    z-index: 1;
	animation: float 4s ease-in-out infinite;
}

.section.lila-background .content {
    position: relative;
    z-index: 2;
}

.kezdunk {
	color:#ff6000;
	margin-bottom:0px;	
}

.motivacios-valasz {
    background: #ffffff;
    border: 4px solid #9147ff;
    padding: 20px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    z-index: 9999;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
}
@media (max-width: 1200px) {
    .section1 h1 {
        font-size: 3.5em;
    }

    .section1 h2 {
        font-size: 2.1em;
    }

	.section1 .logo {
		display:none
	}
}

@media (max-width: 992px) {
    .section1 h1 {
        font-size: 3em;
		text-align: center;
    }

    .section1 h2 {
        font-size: 2em;
		text-align: center;
    }

	.section2 div {
		width:100%
	}

	.section {
		padding-left:15px;
		padding-right:15px;
	}
}

@media (max-width: 768px) {
    .section1 h1 {
        font-size: 2.5em;
    }

    .section1 h2 {
        font-size: 2em;
    }

	.section.lila-background::before {
        background-size: 150px;
        top: -20px;
        right: -10px;
        bottom: auto;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .section1 h1 {
        font-size: 2em;
    }

    .section1 h2 {
        font-size: 1.8em;
    }
}