body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

header {
  position: fixed; /* rögzítjük a fejlécet */
  position: absolute;  /* ráül a kép tetejére */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: transparent;  /* eltűnik a fehér sáv */
  color: white; /* szöveg legyen fehér, hogy látszódjon a képen */
  z-index: 1000; /* mindig a kép felett legyen */
}


header .logo {
    font-weight: bold;
    font-size: 1.2rem;
}

header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0 10rem 0 0;
}

header nav a {
    text-decoration: none;
    color: white; /* legyen fehér */
    font-weight: bold;
    font-size: 1.15rem;      /* nagyobb betűméret */
    padding: 0.5rem 1.2rem;  /* nagyobb belső margó */
    transition: text-decoration 0.2s;
}

header nav a:hover {
    color: #6a0dad;
    text-decoration: underline;
}

section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: auto;
}

/* Hero rész */
.hero {
  position: relative;
  height: 80vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;

  background: url('images/image.webp') no-repeat top center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* <<< BALRA IGÉNYEZÉS */
  text-align: left;
  color: white;

  max-width: 100% !important;
}
section.hero {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.about-card {
  padding: 60px 20px;
  background: #f7f7f7; /* világos szürke háttér */
  border-radius: 12px; /* lekerekített sarkok */
  max-width: 1200px;
  margin: 60px auto; /* középre helyezés */
}

.about-card-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.about-card-img img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;   
  margin-bottom: 20px; 
}

.about-card-text {
  flex: 1;
}

.about-card-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6a0dad;
}

.about-card-container.reverse {
  flex-direction: row-reverse;
}
.about-card-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 1;
  text-align: left; 
  margin-left: 5%;    
}

.hero-content h1 {
  font-size: 3rem;      /* nagyobb név */
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.3rem;    /* nagyobb titulus */
  margin-top: 0.5rem;
}

.hero .buttons {
    margin-top: 1.5rem;
}

.btn {
    background: #6a0dad;
    color: white;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 1rem;
}

.btn:hover {
    background: #520a9e;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem ;
}

.btn-outline:hover {
    background: white;
    color: #6a0dad;
}

/* About */
.about {
    padding: 60px 20px;
    background-color: #fff;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-img img {
    width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.about-text {
    flex: 1;
}


.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.about img {
    max-width: 300px;
    border-radius: 8px;
}

/* Coaching */
.coaching ul {
    padding-left: 1.2rem;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

form input, form textarea, form button {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #6a0dad;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #520a9e;
}

/* Vélemények (Javított stílus) */
.reviews-slider-container {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    padding: 2rem 0;
    align-items: stretch; /* minden elem azonos magasságú lesz */
}

.review-card {
    display: flex;
    flex-direction: column; /* hogy a tartalom szépen egymás alatt legyen */
    justify-content: space-between; /* ha kell, a tartalom alja fixen lent maradjon */
    flex: 0 0 300px; /* fix szélesség */
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.card-header p {
    margin: 0;
    font-weight: bold;
    line-height: 1.2;
}

.quote {
    font-style: italic;
    color: #555;
    margin: 0;
}
.coaching-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.coaching-left {
  flex: 1;
}

.coaching-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6a0dad;
}

.coaching-left ul {
  list-style: none;
  padding: 0;
}

.coaching-left li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.coaching-right {
  flex: 1;
}

.coaching-card {
  background: #f9f4ff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.coaching-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.coaching-card ul {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #6a0dad;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #520a9e;
}

.adatkezeles {
  padding: 60px 20px;
  max-width: 800px;
  margin: 100px auto 50px auto;
  line-height: 1.8;
}

.adatkezeles h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6a0dad;
}

.adatkezeles h2 {
  font-size: 1.4rem;
  margin-top: 25px;
  color: #333;
}



/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    margin-top: 2rem;
}

/* Amiben hiszek */
.beliefs {
  padding: 60px 20px;
  background: #fff;
}

.beliefs-container {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.beliefs-text {
  flex: 1;
}

.beliefs-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6a0dad;
}

.beliefs-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.beliefs-img img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



/* Mobil nézet */
/*
    A meglévő CSS kód módosítása CSAK mobil nézetre.
    Ezt a kódot a style.css fájl végére kell illeszteni.
*/

@media (max-width: 767px) {
    /* Fejléc (header) */
    header {
        flex-direction: column;
        align-items: center; /* A logó és a menü középre kerül */
        padding: 1rem 5%;
        background: rgba(0, 0, 0, 0.4);
        position: fixed;
    }

    header nav {
        width: 100%;
        margin-top: 1rem;
    }
    header nav a {
        font-size: 1rem; /* Csökkentjük a betűméretet a mobilnézethez */
        padding: 0.5rem 0.8rem; /* A belső margót is kisebbre vesszük, hogy jobban elférjenek */
    }

    /* A navigációs menüpontok egymás mellé kerülnek */
    header nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }

    /* Fő szekciók (Hero, beliefs, coaching, about) */
    section {
        padding: 4rem 5%;
    }

    /* Hero rész (Hero) */
    .hero {
        height: auto;
        padding: 120px 0 40px 0; 
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        margin-top: 80px; 
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

   /* Hero rész (Hero) */
    .hero .buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem; /* A gombok közötti távolság csökkentése */
        align-items: center;
    }

    .btn,
    .btn-outline {
        width: 100%; /* A gombok kitöltsék a rendelkezésre álló helyet */
        max-width: 250px; /* De ne legyenek szélesebbek 250px-nél */
        box-sizing: border-box;
    }

    /* Amiben hiszek (beliefs) és Rólam (about) */
    .beliefs-container,
    .about-card-container,
    .coaching-container {
        flex-direction: column;
        gap: 30px;
    }

    .beliefs-img img,
    .about-card-img img {
        width: 100%;
        height: auto;
        box-shadow: none;
        margin: 0;
    }

    .about-card-img img:first-child {
        margin-bottom: 20px;
    }

    .about-card-container.reverse {
        flex-direction: column;
    }

    /* Coaching szekció */
    .coaching-card {
        padding: 1.5rem;
    }

    /* Vélemények (reviews) */
    .reviews-slider-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .reviews-slider-container::-webkit-scrollbar {
        display: none;
    }

    .reviews-slider-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .review-card {
        flex: 0 0 85%;
        max-width: none;
    }

    /* Kapcsolat (contact) */
    .contact form {
        max-width: 95%;
    }
}