@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(139, 69, 19, 0.8)), 
                url('../images/79d813ae-9696-4deb-b2fb-50f9642f3b1f.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
}


header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #d4a574;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b4513;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover {
    color: #8b4513;
    background-color: rgba(212, 165, 116, 0.2);
}


main {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


#item-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

#item-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #d4a574, #8b4513);
}

#item-form label {
    display: block;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#item-form input[type="text"],
#item-form input[type="file"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

#item-form input[type="text"]:focus,
#item-form input[type="file"]:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
    background: white;
    transform: translateY(-2px);
}

#item-form button[type="submit"] {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

#item-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}


.menu-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.menu-table thead {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
}

.menu-table thead th {
    padding: 1.5rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.menu-table tbody tr:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: scale(1.01);
}


.menu-table tbody td {
    padding: 1.5rem;
    font-size: 1rem;
    vertical-align: middle;
}


.menu-table tbody td img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.menu-table tbody td img:hover {
    transform: scale(1.1);
}


#clear-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    margin-top: 1rem;
}

#clear-button:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}


footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 3px solid #d4a574;
}

footer p {
    font-size: 1rem;
    color: #d4a574;
    font-weight: 400;
}
