:root {
    --primary: "IBM Plex Serif", serif;
    --second: "Vend Sans", sans-serif;
    --three: "Sansation", sans-serif;

    --main-bg: #ffffff;
    --accent: #7e994b;
    --accent-dark: #7db94c;

    --text-light: #ffffff;
    --text-dark: #4a6113;
}

/* RESET + BASE */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--primary);
    color: var(--text-dark);
    background: var(--main-bg);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

/* TOPBAR */
.topbar {
    background: var(--main-bg);
    color: var(--text-dark);
    font-size: 14px;
}

/* NAVBAR */
.navbar {
    background: var(--accent-dark);
    border-bottom: 1px solid #4a6113;
    font-family: var(--second);
}

.navbar .navbar-brand {
    color: #fff;
    font-weight: 700;
}

/* NAVBAR LINK – SIMA, FEHÉR, LÁTHATÓ */
.navbar .nav-link {
    color: #ffffff !important;   /* <<< EZ A LÉNYEG */
    font-weight: 500;
}

.navbar .nav-link:hover {
    background: #b7e6a3;
    color: black !important;
}

/* HERO */
.hero-section {
    position: relative;
    height: 500px;
    color: var(--text-light);

    background:
        linear-gradient(to bottom right, #bbd141cc, #14802bcc),
        url('/img/hatter.jpg');

    background-size: cover;
    background-position: center;
}
.hero-content h1 {
    font-size: 3rem;
    font-family: var(--three);
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0,0,0,0.9);
}


.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 3rem;
    font-family: var(--three);
}

.admin-uzenet-box {
    min-height: 250px;          /* egységes magasság */
    border: 1px solid #e5e5e5;  /* finom keret */
    border-radius: 10px;        /* lekerekítés */
    background: #fff;           /* tiszta háttér */
    padding: 25px;              /* belső tér */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* BOXOK */
.choose-box {
    min-height: 350px;          /* egységes magasság */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* tartalom szépen felülről indul */
    align-items: center;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
}

.choose-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* FOOTER */
.footer-section {
    background: var(--accent-dark);
    color: var(--text-light);
    text-align: center;
}

/* ÁLTALÁNOS GOMBOK */
.btn-accent {
    background: var(--accent-dark);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 25px;
}

.btn-accent:hover {
    background: var(--accent);
    color: black;
}
.section-divider {
    width: 80%;
    margin: 60px auto;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.transport-box {
    background: rgba(105, 128, 0, 0.08); 
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    transition: 0.3s ease;
}

.transport-box:hover {
    background: rgba(128, 126, 0, 0.12); 
}

.list-group-item {
    background: #fff9d6;
    border: 1px solid #f0e6a4;
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .navbar #timer {
        position: absolute;
        right: 120px; 
        top: 50%;
        transform: translateY(-50%);
    }
}
