/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #ff6f61;
}

/* Header Styles */
header {
    background-color: #ff6f61;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navigation Styles */
nav {
    background-color: #333;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6f61;
}

/* Menu Section Styles */
.menu-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-section:hover {
    transform: translateY(-5px);
}

.menu-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6f61;
    border-bottom: 2px solid #ff6f61;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-section .content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-section ul, .menu-section table {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section ul li, .menu-section table tr {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.menu-section ul li:last-child, .menu-section table tr:last-child {
    border-bottom: none;
}

.menu-section table {
    width: 100%;
    border-collapse: collapse;
}

.menu-section table th, .menu-section table td {
    padding: 10px;
    text-align: left;
}

.menu-section table th {
    background-color: #ff6f61;
    color: #fff;
}

.menu-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Combo Section Styles */
.combo {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.combo:hover {
    transform: translateY(-5px);
}

.combo h3 {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-bottom: 10px;
}

.combo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.combo ul li {
    padding: 5px 0;
}

.combo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer .footer-info p {
    margin: 5px 0;
}

footer .footer-social {
    margin-top: 10px;
}

footer .footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .footer-social a:hover {
    color: #ff6f61;
}

footer .footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Animation for Menu Sections */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section {
    animation: slideIn 0.5s ease-in-out;
}