﻿/* ============================================================
   ALAP BEÁLLÍTÁSOK
============================================================ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    transition: background 0.5s ease, color 0.5s ease;
}

/* ============================================================
   FEJLÉC
============================================================ */

header {
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logók optimalizálása */
.logo-left,
.logo-right {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-left:hover,
.logo-right:hover {
    transform: scale(1.05);
}

/* Középső menüsor (asztali nézet) */
.desktop-menu {
    display: flex;
}

.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.desktop-menu li {
    margin: 0;
}

.desktop-menu a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Jobb oldali rész: logó + hamburger egy sorban */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ============================================================
   HAMBURGER IKON
============================================================ */

.hamburger {
    display: none; /* csak mobilon jelenik meg */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    transition: 0.3s;
}

/* Téma szerinti hamburger színek */
body.theme-dark .hamburger span {
    background: #ffffff;
}

body.theme-light .hamburger span {
    background: #222222;
}

/* ============================================================
   MOBIL MENÜ
============================================================ */

#sideMenu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #222;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
}

#sideMenu ul {
    list-style: none;
    padding: 0 20px;
}

#sideMenu li {
    margin-bottom: 20px;
}

#sideMenu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#sideMenu.active {
    right: 0;
}

/* Overlay */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
}

#overlay.active {
    display: block;
}

/* ============================================================
   MOBIL NÉZET
============================================================ */

@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    header {
        justify-content: space-between;
    }
}

/* ============================================================
   HERO SZEKCIÓ
============================================================ */

.hero {
    background: url('img/hero.jpg') center/cover no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 40px;
    text-shadow: 2px 2px 5px black;
    margin: 0;
}

.hero-content button {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* ============================================================
   SZEKCIÓK
============================================================ */

section {
    padding: 40px 10%;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: background 0.5s ease, color 0.5s ease;
}

.service-img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Wölfe logók */
.wolfe-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.company-logo {
    height: 60px;
}

/* ============================================================
   FORM
============================================================ */

form {
    padding: 30px;
    border-radius: 10px;
    transition: background 0.5s ease, color 0.5s ease;
}

form label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}

form textarea {
    min-height: 120px;
}

form button {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

/* ============================================================
   LÁBLÉC
============================================================ */

footer {
    text-align: center;
    padding: 20px;
    transition: background 0.5s ease, color 0.5s ease;
}

/* ============================================================
   TÉMA-VÁLTÓ IKONOK
============================================================ */

.theme-switcher-icons {
    position: fixed;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.45);
    padding: 8px 12px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.theme-switcher-icons span {
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.theme-switcher-icons span:hover {
    transform: scale(1.25);
    opacity: 0.8;
}

/* ============================================================
   🌑 SÖTÉT TÉMA
============================================================ */

body.theme-dark {
    background: #121212;
    color: #e6e6e6;
}

body.theme-dark header {
    background: #8a0000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

body.theme-dark .desktop-menu a {
    color: #ffffff;
}

body.theme-dark .desktop-menu a:hover {
    color: #ffb347;
}

body.theme-dark section {
    background: #1c1c1c;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3 {
    color: #ffb347;
}

body.theme-dark footer {
    background: #0f0f0f;
    color: #ffb347;
}

body.theme-dark form {
    background: #1c1c1c;
}

body.theme-dark form input,
body.theme-dark form select,
body.theme-dark form textarea {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
}

body.theme-dark form button {
    background: #8a0000;
    color: #ffffff;
}

body.theme-dark form button:hover {
    background: #ffb347;
    color: #1f1f1f;
}

/* ============================================================
   ☀️ VILÁGOS TÉMA
============================================================ */

body.theme-light {
    background: #f7f7f7;
    color: #222222;
}

body.theme-light header {
    background: #b30000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

body.theme-light .desktop-menu a {
    color: #ffffff;
}

body.theme-light .desktop-menu a:hover {
    color: #ffcc80;
}

body.theme-light section {
    background: #ffffff;
}

body.theme-light h1,
body.theme-light h2,
body.theme-light h3 {
    color: #b30000;
}

body.theme-light footer {
    background: #444444;
    color: #ffffff;
}

body.theme-light form {
    background: #fafafa;
}

body.theme-light form input,
body.theme-light form select,
body.theme-light form textarea {
    background: #ffffff;
    color: #222222;
    border: 1px solid #bbbbbb;
}

body.theme-light form button {
    background: #b30000;
    color: #ffffff;
}

body.theme-light form button:hover {
    background: #ff8c42;
    color: #222222;
}
.thankyou-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.thankyou-box {
    background: rgba(0,0,0,0.4);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(6px);
}

.thankyou-box h1 {
    margin-bottom: 20px;
    font-size: 32px;
}

.thankyou-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.back-button {
    display: inline-block;
    padding: 12px 25px;
    background: #8a0000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.3s ease;
}

.back-button:hover {
    background: #ffb347;
    color: #1f1f1f;
}
