/* Root Variables - Egyptian Sphinx Inspired Color Palette */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4A6;
    --primary-gold-dark: #B8941F;
    --sphinx-blue: #1E3A5F;
    --sphinx-blue-light: #2C5282;
    --sphinx-blue-dark: #153E75;
    --terracotta: #C2410C;
    --terracotta-light: #EA580C;
    --warm-cream: #FEF7ED;
    --sand-beige: #F5F1E8;
    --deep-charcoal: #1F2937;
    --soft-gray: #6B7280;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--deep-charcoal);
    background: var(--white);
    min-height: 100vh;
}

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

/* Header Styles with Cover Background */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 2rem 3rem;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-location {
    color: var(--primary-gold-light);
    font-weight: 500;
    font-size: 1rem;
}

/* Logo Section Styles */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    text-align: center;
    padding: 2rem 3rem;
    border-radius: 15px;
}

.logo-image {
    height: 350px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.restaurant-name {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    background-color: rgba(212, 175, 55, 0.7);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 10px;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    border: 1px solid var(--primary-gold);
    
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
#online-eten-bestellen .online-word {
    color: #22c55e;
    font-weight: 600;
}

#online-eten-bestellen{
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}
.header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-gold-light);
}

.address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.address i {
    color: var(--primary-gold);
}



/* Menu Navigation */
.menu-nav {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    border: 2px solid var(--primary-gold-light);
}

.menu-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 0.5rem;
}

.category-btn {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    color: var(--sphinx-blue);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    margin: 0.25rem;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 65, 12, 0.4);
}

/* Category Section with Image */
.category-section {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    border-left: 5px solid var(--primary-gold);
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.category-content {
    padding: 2rem;
}

.category-title {
    color: var(--sphinx-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--terracotta) 100%);
    border-radius: 2px;
}

.category-description {
    color: var(--soft-gray);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

/* Simplified Menu Items */
.menu-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold-light);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--terracotta) 100%);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--primary-gold);
}

.menu-item.vegetarian::before {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sphinx-blue);
    margin: 0;
    flex: 1;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
    white-space: nowrap;
    margin-left: 1rem;
}

.item-description {
    color: var(--soft-gray);
    font-size: 1rem;
    line-height: 1.4;
    margin-top: auto;
}

/* Remove image related styles */
.item-image,
.item-image-placeholder {
    display: none;
}

/* Footer */
.footer {
    background: var(--sphinx-blue);
    color: var(--white);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--sphinx-blue-light);
    padding-top: 1rem;
    text-align: center;
    color: var(--primary-gold-light);
    font-size: 0.9rem;
}

/* Loading Indicator */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading.hidden {
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8B4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .header-content {
        gap: 1.5rem;
    }
    
    .header-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .menu-nav-container {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .category-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
        margin: 0.3rem;
    }
    
    .logo-section {
        padding: 1.5rem 2rem;
        border-radius: 12px;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .restaurant-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
        
    }
    
    .header-location {
        font-size: 0.9rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .category-content,
    .menu-nav {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .category-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }
    
    .menu-item {
        padding: 1rem;
    }
}

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

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Animations */
.menu-item,
.category-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Contact Page Styles */
.contact-section {
    padding: 2rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.opening-hours {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    border: 1px solid var(--primary-gold-light);
    position: relative;
    overflow: hidden;
}

.contact-info::before,
.opening-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--terracotta) 100%);
}

.contact-info h2,
.opening-hours h2 {
    color: var(--sphinx-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: var(--deep-charcoal);
    font-size: 1rem;
    line-height: 1.4;
}

.contact-details p:first-child {
    font-weight: 600;
    color: var(--sphinx-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phone-number {
    margin-top: 1.5rem !important;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    border-radius: 8px;
    color: var(--sphinx-blue) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.phone-number i {
    color: var(--terracotta);
    font-size: 1rem;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--warm-cream);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hours-row:hover {
    background: var(--sand-beige);
}

.hours-row:first-child {
    background: #fef2f2;
    color: #dc2626;
}

.hours-row:first-child .hours {
    color: #dc2626;
    font-weight: 600;
}

.day {
    font-weight: 600;
    color: var(--sphinx-blue);
    font-size: 0.95rem;
}

.hours {
    color: var(--deep-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info,
    .opening-hours {
        padding: 1.5rem;
    }
    
    .contact-info h2,
    .opening-hours h2 {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-size: 1rem !important;
    }
} 

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
} 