/* NORI - Luxury Minimalist Design */
/* True elegance: Less is more */

:root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --cream: #FAF8F3;
    --gray: #6B6B6B;
    --gray-light: #E5E5E5;
    --teal: #2C5F5D;
    --gold: #C9A961;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-hebrew: 'Heebo', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-hebrew);
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--black);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--teal);
}

/* === HERO === */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-hebrew);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
    animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === SECTIONS === */
section {
    padding: 120px 0;
}

.section-title {
    font-family: var(--font-hebrew);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--black);
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 80px;
    font-weight: 300;
}

/* === STORY === */
.story {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray);
}

.story-highlight {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: var(--black) !important;
    margin-top: 40px !important;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === MENU === */
.menu {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.menu-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.menu-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.menu-item:hover .menu-image {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.menu-eng {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.menu-cta {
    text-align: center;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(44, 95, 93, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--cream);
}

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

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--black);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 500;
}

/* === LOCATION === */
.location {
    background: var(--white);
    padding: 0;
}

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

.location-info {
    padding: 120px 80px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-group p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
}

.info-group a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-group a:hover {
    color: var(--teal);
}

.text-muted {
    font-size: 0.9rem;
    opacity: 0.7;
}

.location-cta {
    margin-top: 20px;
}

.location-map {
    height: 100%;
    min-height: 600px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.footer-links a,
.footer-social a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-content {
        padding: 0 30px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        padding: 80px 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .nav-content {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-info {
        padding: 60px 30px;
    }
}