/* Coming Soon Page Styles */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.coming-soon-page {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    text-align: center;
    perspective: 1000px; /* Add perspective for 3D effects */
}

.coming-soon-text {
    font-size: 6rem;
    font-weight: bold;
    color: #ff4500;
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500, 0 0 30px #ff8c00, 0 0 40px #ff8c00;
    animation: sizzle 1.5s infinite alternate;
    cursor: pointer;
    transform: translateZ(50px); /* Give the text some depth */
}

@keyframes sizzle {
    from {
        text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500, 0 0 30px #ff8c00, 0 0 40px #ff8c00, 0 0 50px #ffaf40, 0 0 60px #ffaf40;
    }
    to {
        text-shadow: 0 0 5px #ff4500, 0 0 10px #ff4500, 0 0 15px #ff8c00, 0 0 20px #ff8c00, 0 0 25px #ffaf40, 0 0 30px #ffaf40;
    }
}

/* General Body Styles (for other pages) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

/* Button Styles */
.btn {
    background-color: #A52A2A;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    margin-top: 2rem;
    display: inline-block;
    border: 2px solid #C62828;
    transform-style: preserve-3d;
}

.btn:hover {
    background-color: #C62828;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px) scale(1.05) rotateX(-10deg);
}

/* Main Site Styles */
header {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    transform-style: preserve-3d;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav li {
    margin: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
}

nav a:hover {
    background-color: #fff;
    color: #8B0000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.05) rotateX(-10deg);
}

main {
    padding: 2rem;
    perspective: 1500px;
}

/* Menu Page Styles */
#menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    list-style: none;
}

#menu li {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    padding: 1.5rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#menu li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 15px 15px rgba(0,0,0,0.15);
}

#menu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

#menu h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0.5rem 0;
}

#menu p {
    font-size: 1rem;
    color: #666;
    flex-grow: 1; 
}

#menu p:last-of-type { 
    font-size: 1.2rem;
    font-weight: bold;
    color: #A52A2A;
    margin-top: 1rem;
    flex-grow: 0;
}


#hero {
    background-image: url('https://www.tastingtable.com/img/gallery/what-makes-restaurant-burgers-so-good/l-intro-1662497721.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 4rem 1rem;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 10px 10px rgba(0,0,0,0.22);
    transform: rotateX(5deg) translateZ(20px);
    transition: all 0.4s ease;
}

#hero:hover {
    transform: rotateX(0deg) translateZ(0) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 15px 15px rgba(0,0,0,0.3);
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transform: translateZ(50px);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.2);
}

/* Responsive styles */
@media (min-width: 768px) {
    nav ul {
        flex-direction: row;
        justify-content: center;
    }

    nav li {
        margin: 0 15px;
    }

    #hero {
        padding: 6rem 2rem;
    }

    #hero h1 {
        font-size: 3.5rem;
    }
}
