/* Menu Section Styles */
.menu-section {
    background-color: var(--color-pink);
}

.menu-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.menu-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 40px;
    font-family: var(--font-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(203,161,53,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.menu-card:nth-child(1) { animation-delay: 0.08s; }
.menu-card:nth-child(2) { animation-delay: 0.16s; }
.menu-card:nth-child(3) { animation-delay: 0.24s; }
.menu-card:nth-child(4) { animation-delay: 0.32s; }
.menu-card:nth-child(5) { animation-delay: 0.40s; }
.menu-card:nth-child(6) { animation-delay: 0.48s; }
.menu-card:nth-child(7) { animation-delay: 0.56s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(203, 161, 53, 0.2);
    border-color: var(--color-gold);
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.menu-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    padding: 12px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
    border-radius: 50%;
    color: white;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.menu-card h3 {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.menu-items {
    list-style: none;
    margin-bottom: 25px;
}

.menu-items li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(203, 161, 53, 0.1);
    font-size: 0.95rem;
    color: var(--color-gray);
    position: relative;
    padding-left: 20px;
}

.menu-items li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-cta {
    text-align: center;
    margin-bottom: 30px;
}

.menu-contact-cta {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray);
}

.contact-link {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #A5832E;
}