@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #2c3e50;
    --accent: #d4af37;
    --text: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #1a1a1a;
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Search Bar Meilisearch */
.search-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 4rem;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.search-bar:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

/* Menu Grid */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.nav-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.nav-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    border-color: var(--accent);
}

.nav-card i {
    font-size: 2.5rem;
    color: var(--accent);
}

.nav-card span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
}
