/* ==========================================
   KEBAB & PIZZA HAUS ASPENDOS CUSTOM STYLES
   ========================================== */

/* Variables and Colors */
:root {
    --color-brand-primary: #dd390d;
    --color-brand-hover: #c22f09;
    --color-accent-gold: #d97706;
    --color-dark: #1c1917;
    --color-light-bg: #fafaf9;
}

/* Font Styles & Font Smoothing */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
}

/* Header Scroll Effect Styling */
header.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

header.scrolled .flex-shrink-0 span.font-serif {
    font-size: 1.25rem;
}

/* Smooth Scrolling Anchor Offset */
html {
    scroll-padding-top: 5.5rem; /* Matches fixed header height */
}

/* Custom Button Styling */
.btn-primary {
    background-color: var(--color-brand-primary);
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-brand-hover);
    transform: translateY(-1px);
}

/* Menu Filter Animations */
.menu-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.menu-item.hidden-item {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

/* Custom Scrollbar for modern browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

/* Page load animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Style for simulated interactive Leaflet / OpenStreetMap container */
.leaflet-map-simulated {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 16px 16px;
}
