/* Reset és alapok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, 
        #fef7ed 0%, 
        #fed7aa 20%, 
        #fef7ed 40%, 
        #fdba74 60%, 
        #fef7ed 80%, 
        #fed7aa 100%);
    background-size: 400% 400%;
    animation: bodyGradient 15s ease infinite;
    min-height: 100vh;
}

@keyframes bodyGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Meleg, családias színpaletta */
:root {
    --primary-color: #8b4513;
    --primary-light: #cd853f;
    --secondary-color: #ff6b35;
    --accent-color: #ffa500;
    --warm-red: #dc2626;
    --warm-yellow: #fbbf24;
    --text-dark: #292524;
    --text-light: #78716c;
    --bg-light: #fef7ed;
    --bg-warm: #fff7ed;
    --bg-gradient: linear-gradient(135deg, #fef7ed 0%, #fed7aa 50%, #fdba74 100%);
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(139, 69, 19, 0.1);
    --shadow: 0 20px 25px -5px rgba(139, 69, 19, 0.15), 0 10px 10px -5px rgba(139, 69, 19, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(139, 69, 19, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-warm: linear-gradient(135deg, var(--warm-yellow) 0%, var(--secondary-color) 100%);
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        rgba(251,191,36,0.2), 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4), 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary i {
    color: inherit !important;
}

.btn-secondary:hover i {
    color: var(--white) !important;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Header */
.header {
    background: rgba(255, 247, 237, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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



.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    display: block;
    box-shadow: 0 1px 3px rgba(139, 69, 19, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.location-tag {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(139, 69, 19, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4)); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.hero-img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.05) rotate(1deg);
}

.hero-img:hover::before {
    opacity: 0.2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--warm-red) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(251, 191, 36, 0.1) 25%, 
        rgba(139, 69, 19, 0.1) 50%, 
        rgba(255, 165, 0, 0.1) 75%, 
        rgba(255, 107, 53, 0.1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    transition: top 0.4s ease;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature:hover::before {
    top: 0;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white) !important;
}

.feature h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: var(--bg-light);
}

.menu-categories {
    display: grid;
    gap: 50px;
}

.menu-feedback {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(139, 69, 19, 0.3);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.menu-feedback i {
    color: inherit;
}

.menu-feedback-error {
    color: var(--warm-red);
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(254, 226, 226, 0.9);
}

.menu-category {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.menu-category:nth-child(even)::before {
    background: var(--gradient-warm);
}

.menu-category:nth-child(3n)::before {
    background: var(--gradient-secondary);
}

.menu-category h3 {
    
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-categories h3 #icon {
    background: white;
    -webkit-text-fill-color: white;
}

.menu-icon {
    font-size: 1.8rem;
}

/* image icon for menu categories */
.menu-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    border-radius: 6px;
}



.menu-items {
    display: grid;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 50%, var(--bg-light) 100%);
    background-size: 200% 200%;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    animation: menuItemBg 8s ease infinite;
}

@keyframes menuItemBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    background: rgba(139, 69, 19, 0.05);
    transform: translateX(8px) scale(1.01);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.item-info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-red);
    background: linear-gradient(135deg, var(--warm-red), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover .price::after {
    transform: scaleX(1);
}

.menu-item.unavailable {
    opacity: 0.65;
    border-left-color: rgba(139, 69, 19, 0.2);
}

.menu-item.unavailable .price {
    background: none;
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.item-note {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 6px;
}

.availability-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--warm-red);
    font-weight: 600;
    margin-top: 10px;
}

.menu-empty-category {
    padding: 20px;
    border-radius: 15px;
    background: rgba(139, 69, 19, 0.05);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-icon i {
    color: var(--white) !important;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h3 {
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Gallery */
.gallery h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 15px;
    background: var(--bg-warm);
}

/* Ikonok eredeti színeinek megőrzése */
i, .fas, .far, .fab {
    color: inherit !important;
}

.btn i {
    color: inherit !important;
}

.hero-buttons .btn i {
    color: inherit !important;
}

/* Scrollbar stílus a galériához */
.gallery-images::-webkit-scrollbar {
    width: 8px;
}

.gallery-images::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.gallery-images::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-images::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.gallery-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.gallery-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow);
}

.gallery-img:hover::before {
    opacity: 0.15;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #44403c 0%, #292524 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    background: linear-gradient(90deg, var(--warm-yellow) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section i {
    margin-right: 8px;
    color: var(--secondary-color) !important;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h3 {
        text-align: center;
    }
    
    .contact-details p {
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price {
        align-self: flex-end;
    }
    
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .menu-category {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
        width: 100%;
    }
    
    .contact-details h3 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .contact-details p {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .gallery-images {
        grid-template-columns: 1fr;
    }
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Aktív navigációs elem */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}
