:root {
    --primary: #d4a373; /* Warm terracotta/tan */
    --secondary: #faedcd; /* Soft cream */
    --dark: #1f2421; /* Deep charcoal/green */
    --light: #fefae0; /* Very light beige */
    --accent: #bc6c25; /* Burnt orange */
    --bg: #1f2421;
    --text: #fefae0;
    --header-bg: rgba(31, 36, 33, 0.95);
    --card-bg: #2d3632;
}

.light-mode {
    --bg: #fefae0;
    --text: #1f2421;
    --header-bg: rgba(254, 250, 224, 0.95);
    --card-bg: #faedcd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.4s ease, color 0.4s ease;
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

header {
    background: var(--header-bg);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('interior1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInDown 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeIn 2s ease 0.8s both;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.menu {
    padding: 7rem 10%;
    text-align: center;
}

.menu h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.dish-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.dish-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover img {
    transform: scale(1.05);
}

.dish-info {
    padding: 2rem;
}

.gallery {
    padding: 5rem 5%;
    text-align: center;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.gallery-grid img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.contact {
    padding: 7rem 10%;
    background-color: var(--card-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-system {
    padding: 3rem;
    background: var(--bg);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

#support-form input, #support-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid #444;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid #333;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-70px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(70px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
    .contact-container { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
}
