/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #f90703;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --border-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Language Selector
   =========================== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gray);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-gray);
    color: var(--text-gray);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-red);
    color: var(--text-white);
    border-color: var(--primary-red);
}

.lang-btn.active {
    background: var(--primary-red);
    color: var(--text-white);
    border-color: var(--primary-red);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/170.png');
    background-size: 65%;
    background-position: center;
    opacity: 0.08;
    filter: contrast(1.8);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(249, 7, 3, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 7, 3, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 80px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(249, 7, 3, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    border: 2px solid var(--primary-red);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(249, 7, 3, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.kosher-certification {
    background: var(--bg-darker);
    padding: 30px;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
}

.certificate-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.kosher-certification h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 10px;
}

.kosher-certification p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(249, 7, 3, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature p {
    color: var(--text-gray);
    font-size: 16px;
    margin: 0;
}

/* ===========================
   Menu Section
   =========================== */
.menu {
    background: var(--bg-black);
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-category {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.menu-item p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-darker);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.menu-note p {
    color: var(--text-gray);
    font-size: 16px;
    margin: 0;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(249, 7, 3, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* ===========================
   Hours Section
   =========================== */
.hours {
    background: var(--bg-black);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hours-table {
    background: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    grid-row: span 3;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    background: var(--bg-darker);
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-white);
    font-size: 16px;
}

.hours-row .time {
    color: var(--text-gray);
    font-size: 16px;
}

.hours-row.closed .time {
    color: var(--text-light-gray);
}

.pickup-info {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-gray);
}

.pickup-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.pickup-info p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

.pickup-button {
    display: inline-block;
    padding: 15px 40px;
    background: #25D366;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pickup-button:hover {
    background: #20BA5A;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.contact-icon {
    font-size: 32px;
}

.contact-details h4 {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-red);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-red);
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.tripadvisor:hover {
    background: #00AF87;
    border-color: #00AF87;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 42px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light-gray);
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.pensanta-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--border-gray);
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.pensanta-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 7, 3, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.pensanta-credit svg {
    flex-shrink: 0;
    opacity: 0.8;
    color: var(--primary-red);
}

.pensanta-credit a {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pensanta-credit a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 8px rgba(249, 7, 3, 0.5);
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 6px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo {
        font-size: 24px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-gray);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-logo {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-content,
    .hours-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    section {
        padding: 60px 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Hebrew RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .kosher-certification {
    border-left: none;
    border-right: 4px solid var(--primary-red);
}

html[dir="rtl"] .menu-note {
    border-left: none;
    border-right: 4px solid var(--primary-red);
}
