/* --- style.css - Asia Food Hemer --- */
:root {
    /* Farben basierend auf deinem Logo */
    --primary-red: #E30613;      /* Flammen-Rot */
    --secondary-yellow: #FFDE00; /* Umrandungs-Gelb */
    --text-brown: #3E1E16;       /* Schrift-Braun (statt Schwarz) */
    --bg-cream: #FFF8E1;         /* Hintergrund Creme */
    --white: #ffffff;
    --dark-overlay: rgba(62, 30, 22, 0.7); /* Bräunlicher Schatten */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-brown);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 { font-weight: 700; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 60px 0; }
.bg-cream { background-color: var(--bg-cream); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* --- Buttons --- */
.btn {
    display: inline-block; padding: 12px 24px; border-radius: 50px;
    font-weight: bold; text-transform: uppercase; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background-color: var(--primary-red); color: var(--white); }
.btn-primary:hover { background-color: #b71c1c; transform: translateY(-2px); }

.btn-secondary { background-color: var(--secondary-yellow); color: var(--text-brown); }
.btn-secondary:hover { background-color: #f9a825; transform: translateY(-2px); }

.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--text-brown); }
.full-width { width: 100%; text-align: center; }

/* --- Header --- */
header {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000; padding: 10px 0;
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 65px; width: auto; margin-right: 10px; } 

#nav-menu ul { display: flex; gap: 20px; }
#nav-menu a { font-weight: 600; font-size: 1.05rem; }
#nav-menu a:hover { color: var(--primary-red); }
.nav-btn { background: var(--primary-red); color: var(--white) !important; padding: 8px 20px; border-radius: 30px; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-red); }

/* --- Hero --- */
#hero {
    height: 75vh; min-height: 500px;
    /* Hier wird dein titelbild.jpg geladen */
    background: url('titelbild.jpg') center/cover no-repeat; 
    position: relative; display: flex; align-items: center; color: var(--white); text-align: center;
}
.hero-overlay { position: absolute; inset: 0; background: var(--dark-overlay); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); text-transform: uppercase; }
.hero-content h2 { font-size: 1.2rem; font-weight: 400; margin-bottom: 2rem; color: var(--secondary-yellow); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- Menu --- */
.menu-category-title { 
    color: var(--primary-red); border-bottom: 3px solid var(--secondary-yellow); 
    display: inline-block; margin-bottom: 30px; padding-bottom: 5px; font-size: 1.5rem; 
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; margin-top: 10px; text-align: left; }
.menu-item { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.menu-item:hover { transform: translateY(-5px); }
.menu-item img { width: 100%; height: 220px; object-fit: cover; }
.menu-info { padding: 20px; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.price-row h4 { margin: 0; color: var(--text-brown); font-size: 1.1rem; }
.price-row span { font-weight: bold; font-size: 1.1rem; background: var(--secondary-yellow); color: var(--text-brown); padding: 4px 10px; border-radius: 15px; }
.menu-info p { font-size: 0.95rem; color: #666; }

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.service-card { padding: 30px; background: var(--white); border: 2px solid #eee; border-radius: 10px; text-align: center; transition: 0.3s; }
.service-card:hover { border-color: var(--secondary-yellow); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.service-card h3 { color: var(--primary-red); margin-top: 10px; }

/* --- Kontakt --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 30px; text-align: left; }
.contact-info { font-size: 1.1rem; }
.contact-info p { margin-bottom: 20px; }
.contact-info i { color: var(--primary-red); width: 30px; font-size: 1.2rem; }
.contact-form-wrapper { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
input, select, textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; background: #fafafa; }
input:focus, textarea:focus { outline: none; border-color: var(--primary-red); background: white; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; margin-bottom: 20px; color: #555; }
.checkbox-group input { width: auto; margin-top: 5px; }

/* --- Footer --- */
footer { background: #2c1510; color: #aaa; padding: 40px 0 20px; font-size: 0.9rem; }
footer a:hover { color: var(--white); }

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px;
    background-color: #25D366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 30px; box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; border: 2px solid white;
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); color: white; }

/* --- Scroll Top Button --- */
.scroll-top {
    position: fixed; bottom: 25px; left: 25px;
    width: 40px; height: 40px; background: rgba(0,0,0,0.5); color: white;
    border-radius: 5px; text-align: center; line-height: 40px;
    z-index: 1000; transition: 0.3s;
}
.scroll-top:hover { background: var(--primary-red); }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    #nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); border-top: 1px solid #eee; display: none; padding: 20px 0; text-align: center; box-shadow: 0 10px 10px rgba(0,0,0,0.05); }
    #nav-menu.active { display: block; }
    #nav-menu ul { flex-direction: column; gap: 15px; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.8rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 15px; right: 15px; }
    .scroll-top { bottom: 15px; left: 15px; }
}