* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f7;
    color: #333;
    padding-bottom: 80px;
}

header {
    background: #6a4e23;
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

nav {
    background: #8b6734;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.2s;
}

nav ul li a:hover {
    background: #6a4e23;
    transform: translateY(-2px);
}
footer {
    background: #6a4e23;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

a {
    display: inline-block;
    margin: 10px 0;
    color: #6a4e23;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

form {
    background: white;
    width: 320px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

form h2 {
    text-align: center;
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 12px;
    background: #6a4e23;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

button:hover {
    background: #8b6734;
}

.drinks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

.drink {
    background: white;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.drink:hover {
    transform: translateY(-4px);
}

.drink h3 {
    margin-bottom: 10px;
}

.drink a {
    background: #6a4e23;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.drink a:hover {
    background: #8b6734;
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

th {
    background: #6a4e23;
    color: white;
    font-size: 16px;
}

tr:hover {
    background: #faf7f2;
}

table button {
    width: auto;
    padding: 8px 12px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .drink {
        width: 90%;
    }

    table {
        width: 95%;
        font-size: 14px;
    }

    th, td {
        padding: 10px;
    }
}