.tab-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1);
}
.tab-content.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: none;
}
@media (max-width: 700px) {
  .navbar {
    transition: top 0.35s cubic-bezier(.4,0,.2,1);
  }
  .navbar.hide-on-scroll {
    top: -90px !important;
    transition: top 0.35s cubic-bezier(.4,0,.2,1);
  }
  .navbar {
    top: 0;
  }
}
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}



.navbar {
  position: relative;
  justify-content: flex-start;
  height: 80px;
}
.navbar .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.navbar ul {
  flex: 1 1 0%;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 700px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar .logo {
    position: static;
    left: unset;
    top: unset;
    transform: none;
    z-index: unset;
  }
  .navbar ul {
    flex: unset;
    justify-content: flex-end;
  }
}

@media (max-width: 700px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar .logo {
    flex: unset;
    justify-content: flex-start;
  }
  .navbar ul {
    flex: unset;
    justify-content: flex-end;
  }
}
@media (max-width: 700px) {
  .logo-text {
    display: none;
  }
}
 .logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.contact-section {
    background: rgba(34,34,34,0.97);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(230,126,34,0.10), 0 1.5px 8px 0 #e67e2215;
    max-width: 100%;
    margin: 3.5rem auto 2.5rem auto;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}
.contact-section h2 {
    color: #e67e22;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    text-align: center;
}
.contact-content {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 100%;
    color: #fff;
    font-size: 1.08rem;
    background: rgba(44,44,44,0.93);
    border-radius: 12px;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(230,126,34,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.contact-info p {
    margin: 0.2rem 0 0.2rem 0;
    color: #ffb366;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.contact-info a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: #fff;
    text-shadow: 0 2px 8px #e67e22;
}
.map-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 16px 0 rgba(230,126,34,0.13);
}
.map-embed iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 12px;
    filter: grayscale(0.12) brightness(0.98) contrast(1.08);
}
@media (max-width: 900px) {
    .contact-section {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-content {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    .contact-info {
        max-width: 100%;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info p, .contact-info a {
        text-align: center;
        justify-content: center;
    }
}
a, .cta-button, .tab-link, .menu-item, .service-card, .narghilea-item, .vr-item {
    transition: all 0.12s cubic-bezier(.4,0,.2,1), box-shadow 0.12s cubic-bezier(.4,0,.2,1);
}

a, .tab-link, .cta-button {
    position: relative;
    z-index: 1;
}


a:hover, .cta-button:hover {
    color: #fff !important;
    text-shadow: 0 2px 10px #e67e22;
    filter: brightness(1.09) drop-shadow(0 0 4px #e67e22);
    transform: scale(1.06) translateY(-1.5px);
}

.tab-link:hover {
    color: #fff !important;
    background: #e67e22;
    text-shadow: 0 1px 6px #e67e22;
    filter: brightness(1.07);
    transform: scale(1.05) translateY(-1px);
}


.tab-link {
    position: relative;
    overflow: hidden;
}
.tab-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #e67e22 60%, #fff0 100%);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.3s;
    z-index: 2;
}
.tab-link.active {
    color: #fff !important;
    background: none !important;
}
.tab-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, #e67e22 80%, #fff0 100%);
}
.tab-link:hover {
    color: #fff !important;
    text-shadow: 0 1px 6px #e67e22;
    filter: brightness(1.09);
    background: none !important;
}
.tab-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, #e67e22 60%, #fff0 100%);
}


.menu-item, .narghilea-item, .vr-item, .service-card {
    opacity: 1;
    transform: none;
    animation: none;
}

.menu-item:hover, .narghilea-item:hover, .vr-item:hover, .service-card:hover {
    box-shadow: 0 8px 32px 0 #e67e22, 0 0 16px #fff2;
    transform: scale(1.04) translateY(-4px);
    border-color: #fff;
    z-index: 2;
}

.tab-menu, .tab-menu-container, .menu-grid, .narghilea-grid, .vr-grid {
    animation: fadeInTabModern 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInTabModern {
    0% { opacity: 0; transform: scale(0.97) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.section-animate {
    animation: sectionHighlight 1.1s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 0 0 4px #e67e22, 0 8px 32px 0 rgba(230,126,34,0.18);
    z-index: 2;
    position: relative;
}
@keyframes sectionHighlight {
    0% { box-shadow: 0 0 0 0 #e67e22, 0 8px 32px 0 rgba(230,126,34,0.18); }
    60% { box-shadow: 0 0 0 8px #e67e22, 0 8px 32px 0 rgba(230,126,34,0.18); }
    100% { box-shadow: 0 0 0 0 #e67e22, 0 8px 32px 0 rgba(230,126,34,0.18); }
}
.menu-desc {
    display: block;
    font-size: 0.97rem;
    color: #ffb366;
    font-weight: 400;
    margin-bottom: 0.35rem;
    margin-top: 0.35rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-align: left;
}
.menu-section-title {
    text-align: center;
    color: #e67e22;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.menu-section-subtitle {
    color: #ffb366;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}
.menu-item {
    background: rgba(34,34,34,0.92);
    border-radius: 8px;
    padding: 1.1rem 1rem 0.7rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    min-width: 0;
    min-height: 70px;
    position: relative;
    transition: box-shadow 0.2s;
}
.menu-item:hover {
    box-shadow: 0 4px 16px 0 rgba(230,126,34,0.13);
}
.menu-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 0.5rem;
    word-break: break-word;
    text-align:left;
}
.menu-price {
    font-size: 1.05rem;
    color: #fff;
    background: #e67e22;
    border-radius: 5px;
    padding: 0.18em 0.7em;
    font-weight: 500;
    margin-top: 0.45rem;
    align-self: flex-start;
    box-shadow: 0 1px 4px 0 rgba(230,126,34,0.10);
}
@media (max-width: 700px) {
    .tab-menu-container {
        width: 98vw;
        max-width: 100vw;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        min-height: 54px;
    }
    .menu-title {
        margin-bottom: 0;
        font-size: 1.05rem;
        text-align:left;
    }
    .menu-price {
        margin-top: 0;
        align-self: flex-end;
        font-size: 1.03rem;
    }
}
.tab-menu-container {
    margin: 3rem auto 0 auto;
    width: 80vw;
    max-width: 1200px;
    background: rgba(44,44,44,0.95);
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
    padding: 2rem 1rem 1.5rem 1rem;
}
.tab-menu {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.tab-link {
    background: none;
    border: none;
    outline: none;
    color: #e67e22;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.tab-link.active, .tab-link:hover {
    background: #e67e22;
    color: #fff;
}
.tab-content {
    display: none;
    background: none;
    color: #fff;
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 1.08rem;
    text-align: center;
    min-height: 40px;
    box-shadow: none;
}
.tab-content.active {
    display: block;
    animation: fadeInTab 0.5s;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
       
        .navbar a {
            position: relative;
            text-decoration: none;
            color: #e67e22;
        }

        .navbar a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 2px;
            background: #e67e22;
            transition: transform 0.4s cubic-bezier(.4,0,.2,1);
            border-radius: 2px;
            pointer-events: none;
        }
         .footer-content a {
            position: relative;
            text-decoration: none;
            color: #e67e22;
            font-weight: bolder;
        }

        .footer-content a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 2px;
            background: #e67e22;
            transition: transform 0.4s cubic-bezier(.4,0,.2,1);
            border-radius: 2px;
            pointer-events: none;
        }
        
        a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        body {
            background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
            color: #fff;
            overflow-x: hidden;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;

        }

        .navbar .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e67e22;
        }

        .navbar ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .navbar ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .navbar ul li a:hover {
            color: #e67e22;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: url('') no-repeat center/cover;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease forwards;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #e67e22;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            padding: 0 1rem;
            font-size: 1.2rem;
            width: 100%;
            margin-bottom: 2rem;
        }

        .cta-button {
            padding: 1rem 2rem;
            background: #e67e22;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(230, 126, 34, 0.7);
        }

        .services {
            padding: 5rem 2rem;
            text-align: center;
        }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #e67e22;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #2c2c2c;
            padding: 2rem;
            border-radius: 10px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: calc(0.2s * var(--i));
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #e67e22;
        }

        .service-card p {
            font-size: 1rem;
            color: #ccc;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer {
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            color: #fff;
            text-align: center;
            padding: 2rem 1rem 1rem 1rem;
            position: relative;
            font-size: 1rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            color: #e67e22;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom:2rem;
        }
       

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .navbar ul {
                gap: 1rem;
            }
            .footer {
                font-size: 0.9rem;
                padding: 1.5rem 0.5rem 0.5rem 0.5rem;
            }
            .footer-content {
                padding: 0 0.5rem;
            }
        }