/* הגדרות בסיסיות */
:root {
    --primary-color: #dc3545; /* צבע אדום לכפתור החישוב */
    --accent-color: #e74c3c;
    --text-color: #333;
    --background-color: #f9f9f9;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-radius: 4px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --page-max-width: 1200px; /* רוחב מקסימלי אחיד לכל העמודים */
    --page-padding: 1rem; /* ריווח אחיד בצדדים */
}

/* איפוס סגנונות */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* הגדרות RTL ועיצוב בסיסי */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* עיצוב תפריט ניווט */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--primary-color);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

/* עיצוב תפריט מובייל */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
        flex-direction: column;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* עיצוב כפתורים */
.calculate-button,
.action-button,
.cta-button,
.share-button {
    color: white;
}

.calculate-button {
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.calculate-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* עיצוב טפסים */
.calculator-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* עיצוב תוצאות */
#results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

/* עיצוב כפתורי שיתוף ושמירה */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.share-button i {
    font-size: 1.2em;
    width: 20px;
    text-align: center;
    display: inline-block;
    margin-left: 8px;
}

.share-button span {
    margin-right: 4px;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.share-button:active {
    transform: translateY(0);
}

/* צבעים ספציפיים לכל רשת חברתית */
.share-button.whatsapp { background-color: #25D366; }
.share-button.facebook { background-color: #1877F2; }
.share-button.twitter { background-color: #1DA1F2; }
.share-button.telegram { background-color: #0088cc; }
.share-button.linkedin { background-color: #0077B5; }
.share-button.email { background-color: #EA4335; }

@keyframes buttonClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.share-button:active {
    animation: buttonClick 0.2s ease;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .share-buttons {
        gap: 0.5rem;
    }
    
    .share-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .share-button i {
        font-size: 1rem;
    }
}

/* עיצוב כפתורי שמירה והדפסה */
.save-print-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.action-button {
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.action-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.action-button:hover::after {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .save-print-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .action-button {
        width: 100%;
    }
}

/* עיצוב מודאל */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    width: 80%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.close-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* תגובתיות */
@media (max-width: 768px) {
    .calculator-form {
        padding: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark-bg);
        color: var(--dark-text);
    }

    .feature-card,
    .sushi-card,
    .restaurant-card,
    .term-card {
        background-color: var(--dark-card-bg);
        border-color: var(--dark-border);
    }

    .nav-menu a {
        color: var(--dark-text);
    }

    .hero-section::before {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* שיפורים בעיצוב */
.feature-card,
.sushi-card,
.restaurant-card,
.term-card {
    transition: transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease,
                border-color var(--transition-speed) ease;
    border: 1px solid transparent;
}

.feature-card:hover,
.sushi-card:hover,
.restaurant-card:hover,
.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

/* שיפורים בכפתורים */
.cta-button,
.feature-link,
.action-button {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.cta-button::before,
.feature-link::before,
.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left var(--transition-speed) ease;
}

.cta-button:hover::before,
.feature-link:hover::before,
.action-button:hover::before {
    left: 100%;
}

/* שיפורים בטקסטים בעברית */
body {
    font-family: 'Rubik', sans-serif;
    text-align: right;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* שיפורים בנגישות */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* שיפורים בתמיכה במקלדת */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* שיפורים בביצועים */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lazy-load {
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.lazy-load.loaded {
    opacity: 1;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    direction: rtl;
    text-align: right;
    color: var(--text-color);
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
    box-sizing: border-box;
    background-color: #ffffff;
    margin-top: 60px; /* מרווח קבוע מההידר */
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    position: relative;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.footer-whatsapp i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: block;
    line-height: 1;
}

.footer-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* כותרת ראשית */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo::before {
    content: '🍣';
    font-size: 2rem;
}

.logo h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #ffffff !important; /* צבע לבן במעבר עכבר - מתאים לרקע התפריט */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

/* אזור גיבור */
.hero-section {
    position: relative;
    width: 100vw;
    height: 70vh;
    background-image: url('../images/sushi-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    overflow: visible;
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    top:-27px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section h2 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 2rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* אזור תכונות */
.features-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* עיצוב דף סוגי סושי */
.sushi-types-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.sushi-types-section h2 {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sushi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sushi-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sushi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sushi-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.sushi-image:hover img {
    transform: scale(1.1);
}

.sushi-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sushi-info h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.sushi-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* עיצוב מחשבון */
.calculator-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    margin-top: 8rem;
}

.calculator-section h2 {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #444;
    font-size: 1rem;
}

.form-group select,
.form-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
}

.calculate-button {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
}

.calculate-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.calculate-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.calculate-button:hover::after {
    width: 300px;
    height: 300px;
}

.results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    animation: scaleIn 0.5s ease-out;
}

.results h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:nth-child(1) { animation-delay: 0.1s; }
.result-item:nth-child(2) { animation-delay: 0.2s; }
.result-item:nth-child(3) { animation-delay: 0.3s; }
.result-item:nth-child(4) { animation-delay: 0.4s; }
.result-item:nth-child(5) { animation-delay: 0.5s; }

.result-item span:first-child {
    font-weight: 500;
    color: #444;
}

.result-item span:last-child {
    color: #007bff;
    font-weight: 600;
}

/* עיצוב הערה במחשבונים */
.result-item.note {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.result-item.note span:first-child {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.result-item.note span:last-child {
    color: #495057;
    font-weight: normal;
    line-height: 1.5;
}

/* עיצוב מדריך הכנה */
.preparation-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.preparation-section h2 {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.preparation-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.step-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.step-content p {
    margin-bottom: 0.8rem;
}

.tips-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tips-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.tips-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* התאמה למסכים קטנים מאוד */
@media (max-width: 320px) {
    .section-title,
    .sushi-types-section h2,
    .preparation-section h2,
    .history-section h2,
    .glossary-header h2,
    .page-title,
    .statistics h2,
    .category-title,
    .city-title,
    .restaurant-card h4 {
        font-size: 1.5rem;
        padding: 0.6rem;
        margin-bottom: 1rem;
    }
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background: var(--primary-color);
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: white;
        padding: 0.8rem;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        border: none;
        width: 45px;
        height: 45px;
        order: 2;
        margin-right: 0;
        margin-left: 1rem;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle:hover {
        transform: scale(1.05);
    }

    .menu-toggle:active {
        transform: scale(0.95);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        background: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 0.8rem;
        display: block;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(255,255,255,0.1);
        border-radius: 4px;
    }

    .logo {
        order: 1;
    }

    .main-content {
        margin-top: 60px;
    }

    .hero-section h2 {
        font-size: 2rem;
        padding: 8px 16px;
        margin: 4rem auto 1.5rem;
        position: relative;
        top: 100px;
        left: auto;
        transform: none;
    }

    .hero-content {
        position: relative;
        top: 120px;
        left: auto;
        transform: none;
    }

    .hero-content p {
        font-size: 1.5rem;
        padding: 8px 16px;
        margin: 1.5rem auto;
    }

    .sushi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-section {
        margin-top: 6rem;
        padding: 1.5rem;
    }

    .calculator-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        padding: 1rem;
    }

    .calculator-container {
        padding: 0 0.75rem;
    }

    .calculator-form {
        gap: 1.2rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group select,
    .form-group input {
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .calculate-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .results {
        padding: 1.2rem;
    }

    .result-item {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step h3 {
        font-size: 1.5rem;
    }

    .share-buttons {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .share-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: calc(50% - 0.5rem);
    }
    
    .share-button i {
        font-size: 1rem;
    }
}

/* התאמה לטאבלט */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-section {
        height: 65vh;
    }

    .hero-section h2 {
        font-size: 2.5rem;
        top: 40%;
    }

    .hero-content {
        top: 65%;
    }

    .sushi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-section {
        margin: 2rem 1.5rem;
        padding: 2rem;
    }

    .calculator-container {
        padding: 0 1.5rem;
    }

    .calculate-button {
        max-width: 400px;
    }

    .share-buttons {
        gap: 0.8rem;
    }

    .share-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

/* התאמה למסכים גדולים */
@media (min-width: 1025px) {
    .nav-container {
        padding: 0 3rem;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-section h2 {
        font-size: 3rem;
        top: 35%;
    }

    .hero-content {
        top: 60%;
    }

    .sushi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .calculator-section {
        margin: 3rem auto;
        padding: 2.5rem;
    }

    .calculator-container {
        padding: 0 2rem;
    }

    .calculate-button {
        max-width: 500px;
    }

    .share-buttons {
        gap: 1rem;
    }

    .share-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* התאמה למסכים גדולים מאוד */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-section {
        height: 75vh;
    }

    .hero-section h2 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 2.2rem;
    }

    .sushi-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .share-buttons {
        gap: 1.2rem;
    }

    .share-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

/* התאמה למסכים רחבים מאוד */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }

    .hero-section {
        height: 80vh;
    }

    .hero-section h2 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 2.5rem;
    }

    .sushi-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* התאמה למסכים עם יחס גובה-רוחב שונה */
@media (max-height: 600px) {
    .hero-section h2 {
        font-size: 1.8rem;
        margin: 2rem auto 1rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin: -1rem auto;
    }

    .calculator-section {
        margin-top: 6rem;
    }
}

/* התאמה למסכים עם DPI גבוה */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section {
        background-size: cover;
    }
}

/* התאמה למסכים עם תמיכה ב-HDR */
@media (dynamic-range: high) {
    .hero-section {
        background-image: url('../images/sushi-hero-hdr.jpg');
    }
}

/* סגנונות לדף ההיסטוריה */
.history-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.history-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.timeline {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-right: 0;
    margin-left: auto;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

.history-evolution {
    text-align: center;
    margin: 3rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.statistics {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.statistics h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.statistics p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.countries-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.countries-list li {
    background: #f5f5f5;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    text-align: center;
    color: #444;
    transition: transform 0.3s ease;
}

.countries-list li:hover {
    transform: translateY(-2px);
    background: #e9e9e9;
}

.section-title {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* אנימציות ואפקטים */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* אנימציות לעמודים */
.main-content {
    animation: fadeIn 0.5s ease-out;
}

/* אפקטים לכפתורים */
.calculate-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calculate-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.calculate-button:hover::after {
    width: 300px;
    height: 300px;
}

/* אפקטים לתמונות */
.sushi-image {
    position: relative;
    overflow: hidden;
}

.sushi-image img {
    transition: transform 0.5s ease;
}

.sushi-image:hover img {
    transform: scale(1.1);
}

/* אנימציות למחשבונים */
.results {
    animation: scaleIn 0.5s ease-out;
}

.result-item {
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.result-item:nth-child(1) { animation-delay: 0.1s; }
.result-item:nth-child(2) { animation-delay: 0.2s; }
.result-item:nth-child(3) { animation-delay: 0.3s; }
.result-item:nth-child(4) { animation-delay: 0.4s; }
.result-item:nth-child(5) { animation-delay: 0.5s; }

/* תמונות רקע לעמודים */
.calculator-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* .calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
} */

.calculator-container {
    position: relative;
    z-index: 1;
}

/* אפקטים לטפסים */
.form-group input:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* אפקטים לכרטיסות */
.sushi-card {
    transition: all 0.3s ease;
}

.sushi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* אפקטים לכותרת */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* אפקטים לכפתורי CTA */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), #c0392b);
    z-index: -1;
    transition: transform 0.3s ease;
}

.cta-button:hover::before {
    transform: scale(1.1);
}

/* אפקטים לתפריט מובייל */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        background: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 0.8rem;
        display: block;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(255,255,255,0.1);
        border-radius: 4px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: white;
        padding: 0.8rem;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        border: none;
        width: 45px;
        height: 45px;
        order: 2;
        margin-right: 0;
        margin-left: 1rem;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle:hover {
        transform: scale(1.05);
    }

    .menu-toggle:active {
        transform: scale(0.95);
    }

    .logo {
        order: 1;
    }

    .main-content {
        margin-top: 20px;
    }
}

.save-print-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.action-button {
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.action-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.action-button:hover::after {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .save-print-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .action-button {
        width: 100%;
    }
}

/* עיצוב מילון מונחים */
.glossary-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.glossary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glossary-header h2 {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-section {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.terms-grid {
    display: grid;
    gap: 2rem;
}

.category-section {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-title {
    position: relative;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.term-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.term-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.term-definition {
    color: #333333;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .terms-container {
        grid-template-columns: 1fr;
    }
    
    .glossary-header h2,
    .category-title {
        font-size: 1.8rem;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .term-card {
        padding: 1rem;
    }
}

/* עיצוב כותרת תחתונה */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .terms-container {
        grid-template-columns: 1fr;
    }

    .glossary-container {
        padding: 1rem;
    }
}

/* התאמה למסכים קטנים */
@media (max-width: 1200px) {
    .features-section {
        flex-wrap: wrap;
    }
    
    .feature-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
    }
    
    .feature-card {
        flex: 1 1 100%;
    }

    .sushi-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sushi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* עיצוב כותרת העמוד */
.page-title {
    position: relative;
    text-align: center;
    color: #333;
    margin: 30px 0 2rem 0;
    font-size: 2rem;
    z-index: 2;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
        padding: 0.8rem;
        margin: 30px 0 1.5rem 0;
    }
}

/* התאמה למסכים קטנים מאוד */
@media (max-width: 320px) {
    .page-title {
        font-size: 1.5rem;
        padding: 0.6rem;
        margin: 30px 0 1rem 0;
    }
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    .history-section .page-title {
        margin: 15px 0 1.5rem 0;
    }
    
    .glossary-container .page-title {
        margin: 65px 0 1.5rem 0;
    }
}

/* התאמה למסכים קטנים מאוד */
@media (max-width: 320px) {
    .history-section .page-title {
        margin: 15px 0 1rem 0;
    }
    
    .glossary-container .page-title {
        margin: 65px 0 1rem 0;
    }
}

/* עיצוב עמוד המסעדות */
.restaurants-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.city-section {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.city-section:hover {
    transform: translateY(-5px);
}

.city-title {
    position: relative;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    z-index: 2;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.city-title::before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    font-weight: 900;
    color: #007bff;
    margin-left: 0.8rem;
    font-size: 1em;
}

.restaurant-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.restaurant-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* כפתור גלילה למעלה */
#scrollToTop {
    position: fixed;
    bottom: 5.5rem;
    right: 4.5rem;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: none;
    padding: 0;
    margin: 0;
}

#scrollToTop i {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    padding: 0;
    display: inline-block;
    line-height: 1;
}

#scrollToTop:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    #scrollToTop {
        bottom: 5rem;
        right: 3.5rem;
        width: 40px;
        height: 40px;
    }
}

/* התאמה למסכים קטנים מאוד */
@media (max-width: 320px) {
    #scrollToTop {
        bottom: 4.5rem;
        right: 3rem;
        width: 35px;
        height: 35px;
    }
    
    #scrollToTop i {
        font-size: 1rem;
    }
}

/* סגנונות לנגישות */
.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* עיצוב תפריט מובייל */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
        width: 100%;
        color: white;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.no-results-message {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

/* עדכון רוחב לכל המקטעים הראשיים */
.calculator-section,
.sushi-types-section,
.preparation-section,
.history-section,
.glossary-container,
.restaurants-section {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 2rem var(--page-padding);
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    :root {
        --page-padding: 0.5rem;
    }

    .main-content,
    .calculator-section,
    .sushi-types-section,
    .preparation-section,
    .history-section,
    .glossary-container,
    .restaurants-section {
        padding: 1rem var(--page-padding);
    }

    .calculator-container {
        padding: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .save-print-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .action-button {
        width: 100%;
    }
}

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

/* צבע פונט מותאם לקישור פעיל בתפריט על רקע אדום */
.nav-menu a.active {
    color: #fff !important; /* לבן - ניגודיות גבוהה על אדום */
}

/* הסרת קו תחתון מקישור הלוגו */
.logo a {
    text-decoration: none;
} 