* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.background-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('img/wallpaper.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 15px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
    margin-top: 10px;
}

.logo {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Restaurant Information */
.restaurant-info {
    margin-bottom: 20px;
    color: white;
    width: 100%;
}

.restaurant-name-ar {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.company-info-ar {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.restaurant-name-en {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.company-info-en {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Navigation Dots */
.nav-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(210, 180, 140, 0.8);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(210, 180, 140, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn .text-ar {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
}

.nav-btn .text-en {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 15px 0;
    z-index: 2;
}

.footer-text {
    font-family: 'Cairo', sans-serif;
    font-size: 0.75rem;
    color: #ff4444;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6666;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .background-container {
        padding: 15px 10px;
    }

    .content {
        max-width: 100%;
        padding: 0 10px;
    }

    .logo {
        max-width: 90px;
    }

    .logo-container {
        margin-bottom: 16px;
        margin-top: 5px;
    }

    .restaurant-info {
        margin-bottom: 16px;
    }

    .restaurant-name-ar {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }

    .restaurant-name-en {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .company-info-ar {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .company-info-en {
        font-size: 0.8rem;
    }

    .social-media {
        margin-bottom: 14px;
    }

    .nav-dots {
        margin-bottom: 14px;
    }

    .nav-buttons {
        margin-bottom: 25px;
    }

    .nav-btn {
        padding: 12px 18px;
    }

    .nav-btn .text-ar {
        font-size: 0.9rem;
    }

    .nav-btn .text-en {
        font-size: 0.7rem;
    }

    .footer {
        padding: 12px 0;
    }

    .footer-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .background-container {
        padding: 12px 8px;
    }

    .logo {
        max-width: 80px;
    }

    .logo-container {
        margin-bottom: 12px;
    }

    .restaurant-info {
        margin-bottom: 14px;
    }

    .restaurant-name-ar {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .restaurant-name-en {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .company-info-ar {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .company-info-en {
        font-size: 0.75rem;
    }

    .social-media {
        margin-bottom: 12px;
    }

    .nav-dots {
        margin-bottom: 12px;
    }

    .nav-buttons {
        margin-bottom: 20px;
    }

    .nav-btn {
        padding: 10px 16px;
    }

    .nav-btn .text-ar {
        font-size: 0.85rem;
    }

    .nav-btn .text-en {
        font-size: 0.65rem;
    }

    .footer {
        padding: 10px 0;
    }

    .footer-text {
        font-size: 0.65rem;
    }
}

