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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}

.landing-page {
    background: url('Bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phone-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(92%) sepia(12%) saturate(1043%) hue-rotate(283deg) brightness(101%) contrast(92%);
    flex-shrink: 0;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-decoration: none;
}

a .phone-number,
.phone-number a {
    color: white !important;
    text-decoration: none;
}

.announcement {
    font-size: 2rem;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    white-space: normal;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #f3cee4;
    color: #2c3e50;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 206, 228, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e8b8d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 206, 228, 0.6);
}

.menu-page {
    background-color: #f5f5f5;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.menu-header p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.menu-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-image-wrapper {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f3cee4;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ffffff;
}

.back-button {
    display: inline-block;
    background-color: #f3cee4;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 206, 228, 0.4);
    margin: 2rem auto;
    display: block;
    width: fit-content;
}

.back-button:hover {
    background-color: #e8b8d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 206, 228, 0.6);
}

@media (max-width: 768px) {
    .phone-number {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .announcement {
        font-size: 1.2rem;
        white-space: normal;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .menu-header p {
        font-size: 1rem;
    }
    
    .menu-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .menu-image-wrapper {
        padding: 0.5rem;
    }
    
    .menu-image {
        border-radius: 5px;
    }
    
    .logo {
        width: 180px;
        height: 180px;
    }
    
    .container {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}
