/* Alap beállítások */
body {
    font-family: 'Roboto', sans-serif;
    background: url("../sys_images/background3.png") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: brightness(0.8);
  z-index: -1;
  filter: blur(3px);
}

header, nav {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  
}


/* Headline */
h1, h2, h3 {
    
    font-family: 'Playfair Display', serif;
    color: #FFC107;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
    font-weight: 600;
}

/* Link stílus */
a {
    text-decoration: none;
    color: #17a2b8;
}
a:hover {
    opacity: 0.8;
}

/* Kapcsolat kártyák */
.card.contact-card {
    background-color: #1e1e1e !important;
    color: #f8f9fa !important;
}

/* Container – JAVÍTVA (width:100%) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}
header .container, nav .container {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Termékkártya */
.product-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Képek a kártyában */
.product-card img.card-img-top {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    height: auto !important;
    background-color: #fff;
    display: block;
    
}

.card-img-top-logo
{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    height: auto !important;
    background-color: #000;
    display: block;
}

/* Kis képek alul */
.product-card .thumbnail {
    width: 100px;
    height: 76px;
    border-radius: 5px;
    margin: 2px;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.product-card .card-body {
    flex-grow: 1;
}

.product-card .thumbnail:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Táblázat sötét */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 8px 12px;
}

.table th {
    color: #FFC107;
    width: 200px;
    text-align: left;
}

.table td {
    color: #e0e0e0;
}

.table tr:nth-child(even) {
    background-color: #2a2a2a;
}

.table tr:hover {
    background-color: #333333;
}

/* Gombok */
.btn-outline-warning {
    color: #FFC107;
    border-color: #FFC107;
}

.btn-outline-warning:hover {
    background-color: #FFC107;
    color: #121212;
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    background-color: #17a2b8;
    color: #fff;
}

/* Thumbnail */
.thumb {
    width: 100px;
    height: 76px;
    object-fit: cover;
    border-radius: 6px;
    margin: 4px;
    transition: transform 0.2s ease;
}

.thumb:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* 🔥 HIBÁS MOBIL SZABÁLY ELTÁVOLÍTVA ❌ */
/*
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
*/

/* ============================
   MODERN NAVBAR
============================ */
.modern-navbar {
    background: rgba(255,193,7,0.92);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.modern-navbar .navbar-brand {
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modern-navbar .navbar-brand:hover {
    color: #272727;
}

.modern-navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-left: 18px;
    transition: 0.25s ease;
    font-size: 1rem;
}

.modern-navbar .nav-link:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.modern-navbar .navbar-brand,
.modern-navbar .nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}
.assistant-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    font-family: 'Poppins', sans-serif;
}

.assistant-bubble {
    background: #FFC107;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 30px;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    transition: 0.3s;
}

.assistant-bubble:hover {
    transform: scale(1.1);
}

.assistant-window {
    width: 320px;
    height: 380px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,.5);
    display: none;
    flex-direction: column;
}

.assistant-header {
    background: #FFC107;
    padding: 15px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.assistant-messages {
    padding: 15px;
    flex-grow: 1;
    color: #fff;
    font-size: 0.9rem;
    overflow-y: auto;
}

.assistant-input {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .5px;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.15) !important;
}

footer p {
    margin: 0;
    opacity: .85;
}

footer .container {
    padding: 20px 0;
}
footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #000, #111);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.15) !important;
}

footer p {
    margin: 0;
    opacity: .85;
}

footer .container {
    padding: 20px 0;
}
/* =========================
   NYITÓLAP HERO SLIDER
   ========================= */

.hero-slider {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 140px); /* header + navbar levonása kb */
    overflow: hidden;               /* NINCS saját scroll */
}

/* minden slide teljes képernyő */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}

/* szöveg középen */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFE600;
    padding: 0 1.5rem;
}
.hero-content h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #fff !important;
}


.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 12px rgba(0,0,0,.8);
}

.hero-btn {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    background: #FFC107;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-btn:hover {
    background: #ffdb3b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.6);
}

/* előre / vissza gombok */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease, transform .2s ease;
}

.hero-nav:hover {
    background: rgba(0,0,0,.8);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: 25px; }
.hero-next { right: 25px; }

/* pöttyök alul */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.hero-dots .dot.active {
    background: #FFC107;
    transform: scale(1.2);
}

/* mobil finomhangolás */
@media (max-width: 768px) {
    .hero-nav {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .assistant-widget{
    bottom: 70px;
  }
}

