* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    perspective: 1000px;
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffcc00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    flex: 1;
    margin-top: 80px;
}

.section {
    display: none;
    padding: 60px 5%;
    min-height: calc(100vh - 80px);
}

.section.active {
    display: block;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 2em;
    margin-bottom: 40px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

.book-table-btn,
.reservation-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.book-table-btn:hover,
.reservation-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Plates Container */
.plates-container {
    position: relative;
    width: 100%;
    height: 80vh;
    perspective: 2000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plate {
    position: absolute;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateZ(-1000px) rotateY(90deg);
}

.plate.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0);
}

.plate-content {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plate-content.front {
    transform: rotateY(0);
}

.plate-content.back {
    transform: rotateY(180deg);
}

.dish-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.welcome-plate .dish-image { background-image: url('assets/welcome-dish.jpg'); }
.menu-plate .dish-image { background-image: url('assets/menu-dish.jpg'); }
.about-plate .dish-image { background-image: url('assets/about-dish.jpg'); }
.reviews-plate .dish-image { background-image: url('assets/review-dish.jpg'); }
.contact-plate .dish-image { background-image: url('assets/contact-dish.jpg'); }

.plate h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plate h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.plate p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.plate button,
.plate a {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plate button:hover,
.plate a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.plates-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes floatPlate {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0); }
}

.plate.active {
    animation: floatPlate 6s infinite ease-in-out;
}

@media (max-width: 768px) {
    .plate {
        width: 250px;
        height: 250px;
    }

    .dish-image {
        width: 120px;
        height: 120px;
    }

    .plate h2 {
        font-size: 20px;
    }

    .plate p {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero .tagline {
        font-size: 1.5em;
    }

    .reservation-btn {
        padding: 15px 30px;
        font-size: 1em;
    }
}

/* About Section */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.menu-tab:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
}

.menu-tab.active {
    background: #ffcc00;
    color: black;
    border-color: #ffcc00;
}

.menu-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-section.active {
    display: block;
    opacity: 1;
}

.menu-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffcc00;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h4 {
    color: #ffcc00;
    margin-bottom: 10px;
}

.menu-item p {
    margin-bottom: 15px;
    font-size: 14px;
}

.price {
    font-weight: bold;
    color: #ffcc00;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.review {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffcc00;
}

.date {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}

.review-form {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
}

.rating {
    display: flex;
    gap: 5px;
    font-size: 24px;
    color: #ffcc00;
}

.rating i {
    cursor: pointer;
    transition: transform 0.2s;
}

.rating i:hover {
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #ffd633;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #ffcc00;
    margin-right: 15px;
    width: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00;
}

.map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Reservation Modal */
.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    max-width: 500px;
    margin: 50px auto;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    color: white;
}

.modal-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ffd700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(45, 45, 45, 0.9);
    color: #fff;
    font-size: 1rem;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(45, 45, 45, 0.9);
    color: #fff;
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.form-group select option {
    background: #2d2d2d;
    color: #fff;
    padding: 0.8rem;
}

.form-group select:hover {
    border-color: #ffd700;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 5% 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .burger {
        display: block;
    }
    
    .scene {
        width: 250px;
        height: 250px;
    }
    
    .cube__face {
        width: 250px;
        height: 250px;
    }
    
    .cube__face--front {
        transform: translateZ(125px);
    }
    
    .cube__face--back {
        transform: rotateY(180deg) translateZ(125px);
    }
    
    .cube__face--right {
        transform: rotateY(90deg) translateZ(125px);
    }
    
    .cube__face--left {
        transform: rotateY(-90deg) translateZ(125px);
    }
    
    .cube__face--top {
        transform: rotateX(90deg) translateZ(125px);
    }
    
    .cube__face--bottom {
        transform: rotateX(-90deg) translateZ(125px);
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Menu Card Deck */
.menu-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.menu-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front {
    display: flex;
    flex-direction: column;
}

.card-front h4 {
    padding: 20px;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #ffcc00;
    font-size: 1.3em;
}

.card-front img {
    width: 100%;
    height: calc(100% - 70px);
    object-fit: cover;
}

.card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.card-back p {
    color: white;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.card-back .price {
    color: #ffcc00;
    font-size: 1.5em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-tabs {
        gap: 10px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .menu-deck {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .menu-card {
        height: 350px;
    }

    .card-front h4 {
        font-size: 1.1em;
        padding: 15px;
    }

    .card-back p {
        font-size: 1em;
    }

    .card-back .price {
        font-size: 1.3em;
    }
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Responsive adjustments for video */
@media (max-aspect-ratio: 16/9) {
    #heroVideo {
        width: 100%;
        height: auto;
    }
}

@media (min-aspect-ratio: 16/9) {
    #heroVideo {
        width: auto;
        height: 100%;
    }
}

.features-section {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(74, 74, 74, 0.9));
    padding: 60px 0;
    margin-top: -80px;
}

.experience-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.highlight {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.highlight:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
}

.highlight i {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.highlight p {
    color: white;
    font-size: 1.1em;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .experience-highlights {
        gap: 20px;
        flex-wrap: wrap;
    }

    .highlight {
        min-width: calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

    .highlight {
        min-width: calc(50% - 10px);
        padding: 20px;
    }

    .highlight i {
        font-size: 2em;
    }

    .highlight p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .experience-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight {
        min-width: 80%;
    }
}

.opening-hours {
    margin-top: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.opening-hours p {
    margin: 5px 0;
    color: white;
    font-size: 1.1em;
}

.special-note {
    color: #ffcc00;
    font-style: italic;
}

@media (max-width: 768px) {
    .experience-highlights {
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .highlight {
        min-width: calc(50% - 10px);
        padding: 10px;
    }

    .highlight i {
        font-size: 1.2em;
    }

    .highlight p {
        font-size: 0.8em;
    }

    .opening-hours {
        padding: 10px 20px;
    }

    .opening-hours p {
        font-size: 0.9em;
    }
}

/* Loading Screen */
body.loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.dish-container {
    text-align: center;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.dish-container:hover {
    transform: scale(1.05);
}

.plate {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: glow 2s infinite alternate;
}

.plate-inner {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plate i {
    font-size: 50px;
    color: #fff;
    opacity: 0.8;
    animation: rotate 4s infinite linear;
}

.click-instruction {
    color: #fff;
    font-size: 1.2em;
    opacity: 0.7;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.4;
    }
}

/* Menu Page Styles */
.menu-page {
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-container h1 {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cuisine Tabs */
.cuisine-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cuisine-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cuisine-tab:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.cuisine-tab.active {
    background: #ffd700;
    color: #1a1a1a;
}

/* Menu Grid */
.cuisine-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cuisine-section.active {
    display: block;
    opacity: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Menu Items */
.menu-item {
    perspective: 1500px;
    height: 400px;
}

.menu-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.menu-item:hover .menu-item-inner {
    transform: rotateY(180deg);
}

.menu-item-front,
.menu-item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-item-front {
    background: #2d2d2d;
}

.menu-item-front img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.menu-item-front h3 {
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.menu-item-back {
    background: #ffd700;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu-item-back h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.menu-item-back p {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.menu-item-back .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-page {
        padding: 1rem;
    }

    .menu-container {
        padding: 1rem;
    }

    .menu-container h1 {
        font-size: 2rem;
    }

    .cuisine-tabs {
        gap: 0.5rem;
    }

    .cuisine-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        height: 350px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cuisine-section.active {
    animation: fadeIn 0.5s ease forwards;
}

/* Menu Page Reservation Button */
.menu-container .reservation-btn {
    display: block;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-container .reservation-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
} 