:root {
    --primary-color: #f69714;
    --secondary-color: #2b695e;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--secondary-color);
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--black);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}
/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 1rem 2rem; 
    text-align: center;
}

.hero-content {
    max-width: 1200px;
}

.logo {
    width: 250px;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideUp 1.5s ease-out;
}
/* Menu Card Styles */
.menu-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.menu-header p {
    color: var(--black);
    font-size: 1.2rem;
}

.menu {
    padding: 2rem;
}

.menu ul {
    list-style: none;
    margin-bottom: 3rem;
}

.menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--secondary-color);
    animation: fadeIn 0.5s ease-in-out;
}

.dish-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.arroz-info {
    background-color: rgba(246, 151, 20, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.arroz-info p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.arroz-info ul {
    list-style: none;
    margin-left: 1rem;
}

.arroz-info ul li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    border: none;
}

.arroz-info ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}



/* Footer */
footer {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}
/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .menu-container {
        margin: 80px 1rem 2rem;
        padding: 1rem;
    }

    .menu-header h1 {
        font-size: 2.5rem;
    }

    .dish-name {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .arroz-info {
        padding: 1.5rem;
    }
}
