        /* Google Fonts Import */
        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
        
        /* CSS Variables */
        :root {
    --gold-color: #ff0095;
    --black-color: #dbd9d9;
    --green-color: #77ff00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #e2e1e1;
    overflow-x: hidden;
}

.navbar {
    background: rgb(254, 254, 254);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255, 0, 195, 0.542);
    top: 0;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo {
    color: #C2185b;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
}


.logo:hover {
    transform: scale(1.55);
    text-shadow: 0 0 10px #f06292;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.logo-wrapper {
    position: relative;
    width: 80px;  /* تم زيادة الحجم */
    height: 80px; /* تم زيادة الحجم */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glowing-effect {
    position: absolute;
    inset: -15%;
    background: radial-gradient(
        circle at center,
        rgba(255, 0, 149, 0.8) 0%,
        rgba(255, 0, 204, 0.3) 40%,
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    z-index: 1;
}

/* تأثيرات الحركة */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.08);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* تأثيرات عند مرور المؤشر */
.logo-container:hover .logo-img {
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(255, 0, 144, 0.4));
}

.logo-container:hover .glowing-effect {
    opacity: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo-container:hover .logo {
    transform: translateY(-4px);
    text-shadow: 
        0 0 15px rgba(255, 0, 183, 0.8),
        0 0 30px rgba(255, 0, 204, 0.4),
        0 0 45px rgba(255, 0, 102, 0.334);
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

/* تحسين للشاشات المتوسطة والصغيرة */
@media (max-width: 991px) {
    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    .logo-container {
        gap: 0.8rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}
@media (max-width: 767px) {
            .navbar {
                flex-direction: column;
                padding: 0.5rem 1rem;
            }

            .logo {
                font-size: 1.4rem;
                margin-bottom: 2px;
            }

            .nav-links {
                gap: 1rem;
                justify-content: center;
            }

            .nav-links a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            /* تصغير حجم تأثير Store link على الموبايل */
    .store-link {
        padding: 0.5rem 1.2rem !important;
        letter-spacing: 1px !important;
        font-size: 0.9rem !important; /* تم تكبير الخط للـ Store link */
    }
        }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #f14b90;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Extremely powerful styling for Store link */
.store-link {
    animation: intense-glow 1.5s infinite;
    font-weight: 800;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    z-index: 2;
}
  
/* Multiple layers of glowing effects */
.store-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.356);
    box-shadow: 
        0 0 10px rgba(12, 12, 12, 0.5),
        0 0 20px rgba(12, 12, 12, 0.4),
        0 0 30px rgba(6, 6, 6, 0.3),
        0 0 40px rgba(11, 11, 11, 0.1);
    border-radius: 4px;
    z-index: -1;
    animation: intense-pulse 1.5s infinite;
}
  
/* Powerful text animation with bright glow */
@keyframes intense-glow {
    0% {
        color: #0b0b0b;
        text-shadow: 
            0 0 5px rgba(9, 9, 9, 0.8),
            0 0 10px rgba(5, 5, 5, 0.5);
    }
    50% {
        color: #161616;
        text-shadow: 
            0 0 10px rgb(3, 3, 3),
            0 0 20px rgb(8, 8, 8),
            0 0 30px rgb(10, 10, 10),
            0 0 40px rgb(13, 13, 13);
    }
    100% {
        color: #0b0b0b;
        text-shadow: 
            0 0 5px rgba(6, 6, 6, 0.8),
            0 0 10px rgba(21, 22, 21, 0.5);
    }
}
  
/* Intense pulsating background glow */
@keyframes intense-pulse {
    0% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(24, 24, 24, 0.5),
            0 0 20px rgba(7, 7, 7, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(7, 7, 7, 0.7),
            0 0 25px rgba(16, 17, 16, 0.5),
            0 0 35px rgba(9, 9, 9, 0.3),
            0 0 45px rgba(5, 5, 5, 0.2);
    }
    100% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(8, 8, 8, 0.5),
            0 0 20px rgba(13, 13, 13, 0.3);
    }
}
  
/* Powerful underline effect */
.store-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #124406;
    box-shadow: 
        0 0 5px #124406,
        0 0 10px #124406,
        0 0 15px #124406;
    z-index: 1;
    animation: underline-flare 1.5s infinite;
}
  
@keyframes underline-flare {
    0% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #255906,
            0 0 10px #0b5605;
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 10px #1e4f04,
            0 0 20px #163f08,
            0 0 30px #055d11;
        height: 4px;
    }
    100% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #0d5c07,
            0 0 10px #174f05;
    }
}
  
/* Add an outer glow effect */
.store-link {
    filter: drop-shadow(0 0 8px rgba(14, 101, 6, 0.5));
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--green-color);
    border-radius: 50%;
    animation: fallDown linear infinite;
}

@keyframes fallDown {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    50% { opacity: 0.7; }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Reservation Container Styles */
.reservation-container {
    background: rgba(204, 204, 204, 0.8);
    border: 3px solid var(--gold-color);
    border-radius: 18px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    right: -35%;
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.411);
    position: relative;
    overflow: hidden;
    z-index: 10;
    transform: scale(0.7) rotateX(45deg);
    opacity: 0;
    animation: revealForm 1.5s forwards;
    animation-delay: 0.2s;
}

@keyframes revealForm {
    0% {
        transform: scale(0.7) rotateX(45deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.05) rotateX(-10deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotateX(0);
        opacity: 1;
    }
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--gold-color);
    text-shadow: 0 0 20px rgba(255, 0, 183, 0.5);
    position: relative;
    animation: glowText 2s infinite alternate;
    transform: translateY(-50px);
    opacity: 0;
    animation: slideTitle 1.5s forwards;
    animation-delay: 0.5s;
}

@keyframes slideTitle {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInInputs 1s forwards;
    animation-delay: 0.7s;
}

@keyframes slideInInputs {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold-color);
    border-radius: 10px;
    color: var(--gold-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 132, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--gold-color), #ff00ea);
    border: none;
    border-radius: 10px;
    color: var(--black-color);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
    animation: popButton 1s forwards;
    animation-delay: 1s;
}

.submit-btn:hover {
    transform: scale(1.2);
}

@keyframes popButton {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.note-section {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gold-color);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpNote 1s forwards;
    animation-delay: 1.2s;
}

@keyframes slideUpNote {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    background-color: #ff006a;
    color: rgb(236, 235, 235);
    padding: 15px 30px;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1000;
    text-align: center;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Footer Styles */
.footer {
    background: #d9d9d9;
    color: #f40e98;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #ff0077;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff005d;
    animation: expand 2s ease-out infinite;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ea1353;
    text-decoration: none;
    padding: 0.8rem;
    border: 1px solid #ff007b;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: #d10773;
    color: #dbdbdb;
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 2rem;
}

 /* styles.css */
 #whatsapp-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}

#whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(212, 21, 120, 0.433);
    text-decoration: none;
    transition: background-color 0.5s ease;
    transition: color 0.5 ease;
}

#whatsapp-icon:hover {
    background-color: #fcfcfc;
    color: #bb1a60;
}

/* تنسيق متجاوب للشاشات المختلفة */
@media screen and (max-width: 768px) {
    #whatsapp-container {
        bottom: 15px;
        left: 10px;
    }

    #whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-container {
        bottom: 15px;
        left: 15px;
    }

    #whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* للشاشات الصغيرة جدًا */
@media screen and (max-width: 320px) {
    #whatsapp-container {
        bottom: 10px;
        left: 10px;
    }

    #whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 21px;
    }
}

/* استخدام flexbox للتوسيط */
#whatsapp-icon {
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Additional Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda;
    }
    to {
        text-shadow: 0 0 15px #64ffda, 0 0 20px #64ffda;
    }
}

@keyframes expand {
    0% { width: 0; }
    50% { width: 100px; }
    100% { width: 0; }
}

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {
    .reservation-container {
        width: 95%;
        right: 2.5%;
        padding: 20px;
    }

    .form-title {
        font-size: 2rem;
    }

    .nav-links {
        gap: 0rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* للديسكتوب - إخفاء جميع عناصر BR */
@media screen and (min-width: 769px) {
    br {
        display: none;
    }
}

/* للهاتف والتابلت - إظهار عناصر BR */
@media screen and (max-width: 768px) {
    br {
        display: block;
        line-height: 1;
    }
}

/* بديل آخر: يمكنك إضافة class محدد للعناصر BR التي تريد التحكم فيها */
.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: block;
        line-height: 1;
    }
}

/* إذا كنت تريد التحكم في المسافات بشكل أفضل */
.mobile-spacing {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-spacing {
        display: block;
        height: 20px; /* يمكنك تغيير الارتفاع حسب الحاجة */
    }
}


/* للعناصر BR الخاصة بالهاتف فقط */
.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: block;
        line-height: 1;
    }
}

/* للعناصر BR الخاصة بالديسكتوب فقط */
.desktop-break {
    display: block;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .desktop-break {
        display: none;
    }
}

/* إذا كنت تريد التحكم في المسافات بشكل أفضل */
.mobile-spacing {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-spacing {
        display: block;
        height: 20px; /* يمكنك تغيير الارتفاع حسب الحاجة */
    }
}