* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #faf8f3;
    overflow-x: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37;
    }
    50% {
        box-shadow: 0 0 20px #d4af37, 0 0 30px #d4af37, 0 0 40px #d4af37;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

/* Header & Navigation */
header {
    background: #faf8f3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    animation: fadeInLeft 1s ease-out;
    cursor: pointer;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
    text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.nav-menu li {
    animation: bounce 1s ease-out 0.5s;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #d4af37;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #d4af37;
    transform: translateY(-3px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.reservation-btn {
    background: #d4af37;
    color: #faf8f3;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInRight 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.reservation-btn:hover::before {
    width: 300px;
    height: 300px;
}

.reservation-btn:hover {
    background: #b8941f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-btn {
    background: #d4af37;
    color: #faf8f3;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 1.1s both, pulse 2s infinite 2s;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn:hover {
    background: #b8941f;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Menu Section */
.menu-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.menu-categories {
    display: grid;
    gap: 3rem;
}

.menu-category {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    transition: width 0.4s;
}

.menu-item:hover::before {
    width: 100%;
}

.menu-item:hover {
    transform: translateX(20px) scale(1.02);
    padding-left: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    transition: all 0.3s;
}

.menu-item:hover .item-info h4 {
    color: #d4af37;
    transform: translateX(5px);
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.menu-item:hover .item-info p {
    color: #333;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    transition: all 0.3s;
}

.menu-item:hover .price {
    transform: scale(1.2) rotate(5deg);
    animation: pulse 0.5s;
}

/* About Section */
.about-section {
    background: #f5f5f5;
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #faf8f3;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.placeholder-img {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 5rem 5%;
}

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    position: relative;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-info-cards {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #faf8f3;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #ddd;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-social .social-icon {
    display: inline-block;
    padding: 0.8rem;
    background: #faf8f3;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-social .social-icon:hover {
    background: #d4af37;
    color: #faf8f3;
    transform: translateX(10px);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse 0.5s;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    background: #d4af37;
    color: #faf8f3;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button:hover::before {
    width: 400px;
    height: 400px;
}

.contact-form button:hover {
    background: #b8941f;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    animation: shake 0.5s;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #faf8f3;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #d4af37;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    width: 300px;
    height: 300px;
}

.tab-btn:hover,
.tab-btn.active {
    color: #faf8f3;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.tab-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

/* Features Section */
.features-section {
    padding: 5rem 5%;
    background: #faf8f3;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #f9f9f9, #fff9e6);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(211, 84, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    animation: iconFloat 0.6s ease-in-out;
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 8px 20px rgba(211, 84, 0, 0.5));
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.2) rotate(5deg) translateY(0); }
    50% { transform: scale(1.25) rotate(5deg) translateY(-10px); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: all 0.3s;
}

.feature-card:hover h3 {
    color: #d4af37;
    transform: scale(1.1);
}

/* Chef Section */
.chef-section {
    padding: 5rem 5%;
    background: #f5f5f5;
    position: relative;
    z-index: 5;
}

.chef-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chef-image .placeholder-img {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.chef-text h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.chef-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.chef-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.chef-awards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.award {
    background: #faf8f3;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Specials Section */
.specials-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 6;
    background: #faf8f3;
}

.specials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-card {
    background: #faf8f3;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.special-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.special-card:hover::after {
    transform: scale(1);
}

.special-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: #d4af37;
}

.special-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fff9e6, #faf8f3);
    animation: glow 3s infinite;
}

.special-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #d4af37;
    color: #faf8f3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.special-card:hover .special-badge {
    transform: scale(1.2) rotate(10deg);
    animation: wiggle 0.5s;
}

.special-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: all 0.3s;
}

.special-card:hover h3 {
    color: #d4af37;
    transform: translateX(10px);
}

.special-card > p {
    color: #666;
    margin-bottom: 1rem;
}

.special-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s;
}

.special-card:hover .old-price {
    transform: translateX(-10px);
    opacity: 0.5;
}

.new-price {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    transition: all 0.3s;
    display: inline-block;
}

.special-card:hover .new-price {
    transform: scale(1.2);
    animation: heartbeat 0.8s;
}

.special-card ul {
    list-style: none;
    margin-top: 1rem;
}

.special-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    transform: translateX(0);
}

.special-card:hover li {
    transform: translateX(10px);
}

.special-card li:before {
    content: "✓ ";
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
    transition: all 0.3s;
    display: inline-block;
}

.special-card:hover li:before {
    transform: scale(1.5) rotate(360deg);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin: 1.5rem 0 0.5rem 0;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-section {
    position: relative;
    z-index: 2;
    background: #f5f5f5;
}

.gallery-section {
    position: relative;
    z-index: 1;
    background: #faf8f3;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #faf8f3;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.stat-item:hover::before {
    transform: scale(1);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.1) rotate(-3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.2);
    animation: pulse 0.5s;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    transition: all 0.3s;
}

.stat-item:hover .stat-label {
    color: #333;
    transform: translateY(5px);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #faf8f3;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #d4af37;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: #faf8f3;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.filter-btn:active {
    animation: bounce 0.5s;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.1) rotate(3deg);
    z-index: 10;
}

.placeholder-img {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.5s;
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    animation: slideInUp 0.5s;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    animation: fadeInUp 0.6s 0.2s both;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    padding: 4rem 5%;
    text-align: center;
    color: #fff;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 1rem;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #faf8f3;
}

.newsletter-form button {
    background: #333;
    color: #faf8f3;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #555;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.map-placeholder {
    background: #f0f0f0;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d4af37;
    color: #faf8f3;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    animation: float 3s infinite;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: float 3s infinite, zoomIn 0.5s;
}

.scroll-to-top:hover {
    background: #b8941f;
    transform: translateY(-10px) scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .menu-section h2,
    .about-content h2,
    .gallery-section h2,
    .contact-section h2,
    .features-section h2,
    .specials-section h2,
    .newsletter-content h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Menu Page Styles */
.menu-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    position: relative;
}

.menu-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.menu-hero-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.full-menu-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background: #faf8f3;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.menu-card:hover::before {
    transform: scale(1);
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.menu-card-image {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s infinite;
}

.menu-card:hover .menu-card-image {
    animation: bounce 0.6s;
}

.menu-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.menu-card:hover h3 {
    color: #d4af37;
    transform: scale(1.1);
}

.menu-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 60px;
}

.menu-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    display: block;
    margin-top: 1rem;
    transition: all 0.3s;
}

.menu-card:hover .price {
    transform: scale(1.2);
    animation: pulse 0.5s;
}

.full-menu-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

.menu-download {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    padding: 4rem 5%;
    text-align: center;
    color: #faf8f3;
}

.menu-download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-btn {
    background: #faf8f3;
    color: #d4af37;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: shake 0.5s;
}

/* View Full Menu Button */
.view-full-menu {
    text-align: center;
    margin-top: 3rem;
}

.full-menu-btn {
    display: inline-block;
    background: #d4af37;
    color: #faf8f3;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.full-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.full-menu-btn:hover::before {
    width: 400px;
    height: 400px;
}

.full-menu-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    animation: pulse 0.5s;
}

.menu-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive for menu cards */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-hero-content p {
        font-size: 1.2rem;
    }
}

/* Custom SVG Icons Styles */
.chef-awards .award {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chef-awards .award svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.chef-awards .award:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(211, 84, 0, 0.4));
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-links .social-icon svg {
    transition: all 0.3s ease;
}

.social-links .social-icon:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 2px 6px rgba(211, 84, 0, 0.3));
}

.footer-section p svg {
    vertical-align: middle;
    transition: all 0.3s ease;
}

.footer-section p:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(211, 84, 0, 0.4));
}

/* Menu Card SVG Icons */
.menu-card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
}

.menu-card-image svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(211, 84, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback for emoji - hide them */
.menu-card-image:not(:has(svg)) {
    font-size: 3rem;
    background: linear-gradient(135deg, #d35400, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu-card:hover .menu-card-image {
    transform: scale(1.15) rotate(5deg);
}

.menu-card:hover .menu-card-image svg {
    filter: drop-shadow(0 8px 20px rgba(211, 84, 0, 0.5));
    animation: menuIconBounce 0.6s ease;
}

@keyframes menuIconBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-8px); }
}

/* Download button icon */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn svg {
    transition: transform 0.3s ease;
}

.download-btn:hover svg {
    transform: translateY(3px);
    animation: downloadBounce 0.6s ease;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(3px); }
    50% { transform: translateY(6px); }
}

/* Contact Page Info Cards Icons */
.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(211, 84, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(-5deg);
}

.info-card:hover .info-icon svg {
    filter: drop-shadow(0 8px 20px rgba(211, 84, 0, 0.5));
    animation: infoIconPulse 0.6s ease;
}

@keyframes infoIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Map placeholder icon */
.map-placeholder svg {
    transition: all 0.4s ease;
}

.map-placeholder:hover svg {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 20px rgba(211, 84, 0, 0.4));
}
