/* Alap beállítások */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Headline */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #FFC107;
}

/* 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;
}

/* 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(-5px);
    box-shadow: 0 8px 20px 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: #1e1e1e;
    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-color: #FFC107;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    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;
}
