/* CSS változók az arculati színekhez */
:root {
    --primary-color-start: #667eea;
    --primary-color-end: #764ba2;
    --primary-gradient: linear-gradient(135deg, var(--primary-color-start) 0%, var(--primary-color-end) 100%);
    --primary-solid: #6366f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    color: #32325d;
    overflow-x: hidden;
}

/* Progress Bar a tetején - MINTA SZERINT */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-solid);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Navigáció - TISZTA FEHÉR HÁTTÉR - PONTOS MINTA */
.navbar {
    background: #ffffff !important;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i {
    color: var(--primary-solid);
}

.navbar-nav .nav-link {
    color: #32325d !important;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-solid) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-solid) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-solid);
    padding-bottom: 0.3rem;
}

/* Elválasztó karakter a navigációs menü elemek között */
.navbar-nav .nav-item {
    display: inline-flex;
    align-items: center;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: '|';
    color: #6c757d;
    margin: 0 0.5rem;
    font-weight: 400;
    display: inline-block;
}

.navbar-toggler {
    border: 0 !important;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-auth {
    padding: 15px 35px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-login {
    background: transparent;
    border: 2px solid #32325d;
    color: #32325d !important;
    margin-right: 0.8rem;
}

.btn-login:hover {
    background: #f1f5f9;
    border-color: var(--primary-solid);
    color: var(--primary-solid) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.btn-register {
    background: var(--primary-solid);
    border: none;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-register:hover {
    background: #4f46e5;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.w3l-footer-29-main {
    background: #2d3436;
    color: #fff;
    padding: 60px 0 0;
}

.footer-logo .navbar-brand {
    font-size: 1.8rem;
}

.footer-29 p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 0.9rem;
}

.main-social-footer-29 {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.main-social-footer-29 a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.main-social-footer-29 a:hover {
    background: var(--primary-color-start);
}

.footer-title-29 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.footer-list-29 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-29 ul li {
    margin-bottom: 10px;
}

.footer-list-29 ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-list-29 ul li a:hover {
    color: #fff;
}

.post1 {
    margin-bottom: 18px;
}

.post-title {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
}

.post1 p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.w3l-copyright {
    background: #25292d;
    padding: 20px 0;
    margin-top: 50px;
}

.copy-footer-29 {
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-size: 0.85rem;
}

.copy-footer-29 a {
    color: var(--primary-color-start);
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(44, 50, 60, 0.98);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn-auth {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-29 .row {
        text-align: center;
    }
    
    .footer-list-29 {
        margin-bottom: 30px;
    }
    
    .main-social-footer-29 {
        justify-content: center;
    }
    
    .main-social-footer-29 a {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .btn-auth {
        width: 100%;
        margin: 0.3rem 0;
    }
    
    .btn-login {
        margin-right: 0;
    }
    
    .footer-title-29 {
        font-size: 0.95rem;
    }
    
    .copy-footer-29 {
        font-size: 0.8rem;
    }
}
