/* BurgerBunny Dark Theme - Modern Design */

/* Body and general styling */
body {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

/* Navbar styling */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.95) !important;
    border-bottom: 2px solid #FF8C42;
    transition: all 0.3s ease;
}

.navbar-brand img {
    filter: drop-shadow(0 4px 8px rgba(255, 140, 66, 0.3));
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    filter: drop-shadow(0 6px 12px rgba(255, 140, 66, 0.5));
    transform: scale(1.05);
}

.nav-link {
    color: #F5F5F5 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #FF8C42, #FFD700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #FF8C42 !important;
    transform: translateY(-2px);
}

/* Dropdown menu styling */
.dropdown-menu {
    background: rgba(31, 31, 31, 0.95);
    border: 1px solid #FF8C42;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: #F5F5F5 !important;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #FF8C42, #E6702A);
    color: #1A1A1A !important;
    transform: translateX(5px);
}

/* Cart styling */
.nav-cart-parent {
    background: linear-gradient(135deg, #FF8C42, #FFD700);
    border-radius: 25px;
    padding: 8px 16px !important;
    color: #1A1A1A !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cart-parent:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    color: #1A1A1A !important;
}

.cart {
    background: #1A1A1A !important;
    color: #FF8C42 !important;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Cards and product styling */
.card {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    border: 1px solid #333333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.2);
    border-color: #FF8C42;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.3);
    border-color: #FFD700;
}

.category-card:hover .card-title {
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.card-body {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    color: #F5F5F5;
}

.card-title {
    color: #FF8C42;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-text {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FF8C42, #E6702A);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E6702A, #CC5A1A);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2D2D2D, #1A1A1A);
    border: 2px solid #FF8C42;
    color: #FF8C42;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FF8C42, #E6702A);
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* Section styling */
.section {
    background: transparent;
    /*padding: 80px 0;*/
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    color: #FF8C42;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF8C42, #FFD700);
    border-radius: 2px;
}

/* Welcome section */
#welcome {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.8) 0%, 
        rgba(26, 26, 26, 0.8) 50%, 
        rgba(45, 45, 45, 0.8) 100%),
        url('../images/burger-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 10px;
}

#welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(255, 140, 66, 0.1) 100%);
}

/* Hero text styling */
.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F5F5F5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    padding: 40px 0;
}

/* Price styling */
.price {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    border-top: 2px solid #FF8C42;
    color: #F5F5F5;
    padding: 60px 0 20px 0;
}

.footer h5 {
    color: #FF8C42;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #FF8C42;
    text-decoration: none;
}

/* Contact section */
#contact {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    border-radius: 20px;
    margin: 40px 0;
    padding: 60px 0;
}

/* Age control overlay */
.agecontrollbg {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.agecontroll {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    border: 2px solid #FF8C42;
    border-radius: 20px;
    color: #F5F5F5;
}

.agecontroll button {
    background: linear-gradient(135deg, #FF8C42, #E6702A);
    border: none;
    border-radius: 25px;
    color: #1A1A1A;
    font-weight: bold;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.agecontroll button:hover {
    background: linear-gradient(135deg, #E6702A, #CC5A1A);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-head h2 {
        font-size: 2rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF8C42, #E6702A);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E6702A, #CC5A1A);
}

/* Loading animation */
#pagelock {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: #FF8C42;
}

/* Popup styling */
.popup {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.popupmain {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    border: 2px solid #FF8C42;
    border-radius: 20px;
    color: #F5F5F5;
}

.popupclose {
    background: #FF8C42;
    color: #1A1A1A;
    font-weight: bold;
    transition: all 0.3s ease;
}

.popupclose:hover {
    background: #E6702A;
    transform: scale(1.1);
}

/* Slider styling */
#top-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.top-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.top-slide .row {
    margin: 0;
    width: 100%;
}

.top-slide .col {
    padding: 0;
}

/* Slider background image fix */
.top-slide [style*="background"] {
    background-attachment: scroll !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #0F0F0F !important;
    /* Alternatív gradiens háttér az üres területekhez */
    /* background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%) !important; */
    height: 50vh !important;
    max-height: 60vh !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 10px 0px 10px 0px !important;
}

/* Hero content styling */
.hero-title {
    color: #FFD700 !important;
    font-size: clamp(2rem, 5vw, 4rem) !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    z-index: 10;
    position: relative;
    /* Finom háttér csak a szöveghez */
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-btn {
    background: linear-gradient(135deg, #FF8C42, #E6702A) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 10;
    position: relative;
}

.hero-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6) !important;
    background: linear-gradient(135deg, #E6702A, #CC5A1A) !important;
}

/* Responsive slider */
@media (max-width: 768px) {
    .top-slide [style*="background"] {
        height: 40vh !important;
        max-height: 45vh !important;
        padding: 15px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-btn {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .top-slide [style*="background"] {
        height: 30vh !important;
        max-height: 35vh !important;
        padding: 10px !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
}