* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

.header {
    text-align: center;
    padding: 40px 0;
    background: #d12229;
    border-radius: 15px;
    margin-bottom: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 80px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.title i {
    margin-right: 15px;
    color: #ffd700;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.camera-link {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.camera-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.camera-link i {
    margin-right: 8px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-section.food-section {
    background: linear-gradient(135deg, #f0f8ff, #e0f2f7);
    color: #333;
}

.food-section .section-header i {
    color: #20b2aa;
}

.food-section .menu-item {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: #20b2aa;
}

.food-section .menu-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.food-section .price {
    color: #20b2aa;
    background: rgba(32, 178, 170, 0.1);
}

.special-section {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
	border-radius: 15px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
}

.special-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.section-header i {
    font-size: 2rem;
    margin-right: 15px;
    color: #667eea;
}

.special-header i {
    color: #ff6b6b;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateX(5px);
    background: #e3f2fd;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.special-item {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: #ff6b6b;
}

.special-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.description {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 3px;
}

.quantity {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    min-width: 80px;
    text-align: center;
}

.special-item .price {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.rating-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.rating-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.star {
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    user-select: none;
}

.star:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.star.active {
    filter: drop-shadow(0 0 10px #ffd700);
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
    min-height: 30px;
}

.dance-partner-section {
    margin: 40px 0;
    text-align: center;
}

.dance-partner-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    animation: rainbow 3s ease infinite;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.dance-partner-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dance-partner-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.dance-partner-btn i {
    margin: 0 10px;
    animation: bounce 2s infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.dance-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.dance-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dance-close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
}

.dance-close:hover {
    transform: scale(1.2);
}

.dance-message {
    text-align: center;
    color: white;
    margin-top: 20px;
}

.dance-message h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: dance 2s infinite;
}

.dance-message h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 10px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.dance-message p {
    font-size: 1.3rem;
    margin: 20px 0;
    font-weight: 600;
}

.dance-animation {
    font-size: 2rem;
    margin-top: 20px;
    animation: sparkle 1.5s infinite;
}

@keyframes dance {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.6); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 2px solid #f0f0f0;
    color: #666;
    font-size: 0.9rem;
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .title i {
        margin-right: 10px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        gap: 30px;
    }
    
    .menu-section {
        padding: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-header i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .item-info h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.2rem;
        align-self: flex-end;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .title i {
        margin-right: 10px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        gap: 30px;
    }
    
    .menu-section {
        padding: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-header i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .item-info h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.2rem;
        align-self: flex-end;
        min-width: 70px;
    }
}

@media (max-width: 375px) {
    .title {
        font-size: 1.8rem;
    }
    
    .section-header {
        align-items: center;
        flex-direction: row;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .item-info h3 {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.8rem;
    }
    
    .quantity {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

