@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/c6ec169f-fac4-49a5-a568-ee2d56d03fde.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
}


header {
    background: rgba(255, 255, 255, 0.95);

    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;
  
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

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;
    min-height: calc(100vh - 200px);
}


main::before {
    content: 'Our Delicious Menu';
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(212, 165, 116, 0.9));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease-out;
}


.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.3);
    border-collapse: collapse;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

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


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


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


.menu-table tbody tr:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}



.menu-table tbody td {
    padding: 2rem 1.5rem;
    font-size: 1.1rem;
    vertical-align: middle;
    position: relative;
}


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


footer p {
    font-size: 1rem;
    color: #d4a574;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

