/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #4caf50;
    padding: 20px 0;
    color: white;
}

header .logo h1 {
    font-size: 2.5em;
    font-weight: 600;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Nyelvválasztó Dropdown */
nav ul li.dropdown {
    position: relative;
}

nav ul li .dropbtn {
    background-color: #4caf50;
    color: white;
    padding: 15px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
}

nav ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

nav ul li:hover .dropdown-content {
    display: block;
}

nav ul li .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav ul li .dropdown-content a:hover {
    background-color: #ddd;
}

/* Kiválasztott nyelv kiemelése */
nav ul li .dropdown-content a.selected {
    background-color: #4caf50;
    color: white;
}

/* Hero Section */
.hero {
    background-image: url('catering-2778755_1280.jpg'); /* Unsplash kép link */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero h2 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.cta-btn {
    background-color: #ff9800;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e68900;
}


/* Features Section */
.features {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background-color: #e0f7fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    width: 100px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1em;
}

/* Download Section */
.download {
    background-color: #4caf50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.download h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.download-btns {
    margin-top: 30px;
}

.download-btn {
    background-color: #ff9800;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #e68900;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1.1em;
}

.contact button {
    background-color: #4caf50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    background-color: #4caf50;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1em;
}
