/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e;
    color: white;
    line-height: 1.6;
}

/* Navigáció */
header {
    background-color: #111;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 1.1em;
}

nav a:hover {
    background-color: #333;
    border-radius: 5px;
}

/* Hero rész */
#hero {
    background: url('src/images/background.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.5em;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Modern gomb */
.modern-btn {
    background-color: #00aaff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.modern-btn:hover {
    background-color: #0088cc;
    transform: translateY(-5px);
}

/* Info szekciók */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.info-box {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-box h2 {
    color: #00aaff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.info-box ul li {
    font-size: 1.2em;
}

.btn-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* Vezetőség szekció */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 oszlopos elrendezés */
    gap: 20px;
    margin-top: 40px;
}

.leader {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.leader img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.leader h3 {
    font-size: 1.2em;
    margin-top: 10px;
    color: #00aaff;
}

.leader p {
    font-size: 1em;
    color: #ccc;
}

/* Tördelés és dizájn a support formhoz */
.support-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Tágabb helyek a mezők között */
    max-width: 800px; /* Szélesebb form */
    margin: 40px auto;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.support-form .form-group {
    display: flex;
    flex-direction: column;
}

.support-form label {
    font-size: 16px; /* Kisebb címkék, jobban olvashatóak */
    margin-bottom: 8px;
    color: #333;
}

.support-form input,
.support-form textarea {
    padding: 16px; /* Nagyobb padding */
    font-size: 18px; /* Nagyobb szöveg a mezőkben */
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    width: 100%; /* 100%-os szélesség */
    height: 100px; /* Magasságot is adunk, hogy négyzet alakú legyen */
    box-sizing: border-box;
}

.support-form textarea {
    resize: none; /* Ne lehessen átméretezni */
}

.support-form button {
    background-color: #0066cc;
    color: #fff;
    font-size: 18px; /* Kisebb font, hogy illeszkedjen a mezőkhöz */
    padding: 12px 30px; /* Nagyobb gomb */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.support-form button:hover {
    background-color: #005bb5;
}

/* Sikerüzenet stílus */
.success-message {
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50; /* Zöld háttér */
    color: white;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    display: none; /* Alapértelmezetten elrejtve */
}
