/* 
   Pacific Kosher Restaurant - Valley Village
   Theme: High-end, Dark Mode, Gold Accents
   Style Guide Reference: packosher.com
*/

:root {
    /* Colors */
    --clr-bg-dark: #0f0f12;
    --clr-bg-lighter: #1a1a20;
    --clr-primary: #bc9038; /* Rich Metallic Gold */
    --clr-primary-hover: #d2a84d;
    --clr-text: #f8f8f8;
    --clr-text-muted: #a0a0a5;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    
    /* Effects */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(15, 15, 18, 0.75);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
    --gold-glow: 0 0 20px rgba(188, 144, 56, 0.15);
    --gold-glow-intense: 0 0 30px rgba(188, 144, 56, 0.3);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-auto { margin-top: auto; }
.w-100 { width: 100%; }

/* Highlights & Subtitle */
.section-subtitle {
    color: var(--clr-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--clr-primary);
    margin: 1rem auto 0 auto;
}

.section-title.left::after {
    margin: 1rem 0 0 0;
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold {
    background-color: var(--clr-primary);
    color: var(--clr-bg-dark);
    border: 1px solid var(--clr-primary);
}

.btn-gold:hover {
    background-color: var(--clr-primary-hover);
    border-color: var(--clr-primary-hover);
    box-shadow: var(--gold-glow-intense);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.btn-outline-gold:hover {
    background-color: var(--clr-primary);
    color: var(--clr-bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-subtle);
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text);
    opacity: 0.8;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    opacity: 1;
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
}

.nav-cta .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--clr-text);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.4) contrast(1.1);
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15,15,18,0.4) 0%, rgba(15,15,18,0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 10;
    margin-top: 5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--clr-text);
    line-height: 1.1;
}

.hero-title span {
    color: var(--clr-primary);
    display: block;
    font-family: var(--font-heading);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--clr-primary);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-certifications {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-text-muted);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 20px;
    margin-bottom: 8px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* Features Banner */
.features-banner {
    background-color: #0b0b0d;
    padding: 5rem 0;
    border-bottom: var(--border-subtle);
    border-top: var(--border-subtle);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(188, 144, 56, 0.05);
    border: 1px solid rgba(188, 144, 56, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(188, 144, 56, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-svg {
    width: 32px;
    height: 32px;
    color: var(--clr-primary);
    stroke-width: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--clr-text);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(188, 144, 56, 0.3);
    background: rgba(188, 144, 56, 0.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.feature-item:hover .feature-icon {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    box-shadow: var(--gold-glow-intense);
}

.feature-item:hover .feature-svg {
    color: var(--clr-bg-dark);
    transform: scale(1.1) rotate(5deg);
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.hours-card {
    background-color: var(--clr-bg-lighter);
    padding: 2.5rem;
    border-radius: 8px;
    border: var(--border-subtle);
    box-shadow: var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--clr-primary);
}

.hours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.hours-table td {
    padding: 1rem 0;
    font-size: 0.95rem;
}

.hours-table .day {
    font-weight: 600;
    color: var(--clr-text);
}

.hours-table .time {
    text-align: right;
    color: var(--clr-text-muted);
}

.hours-table tr.highlight {
    color: var(--clr-primary);
}

.hours-table tr.highlight .day, 
.hours-table tr.highlight .time {
    color: var(--clr-primary);
}

/* Combos & Party Trays Section */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.combo-card {
    background-color: var(--clr-bg-lighter);
    border-radius: 8px;
    overflow: hidden;
    border: var(--border-subtle);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.combo-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.combo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.8);
}

.combo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--clr-primary);
    color: var(--clr-bg-dark);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.combo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
    transition: color 0.3s ease;
}

.combo-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.combo-list {
    list-style: none;
    margin-bottom: 2rem;
}

.combo-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.combo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: bold;
}

.combo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(188, 144, 56, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), var(--gold-glow);
}

.combo-card:hover .combo-image {
    transform: scale(1.08);
}

.combo-card:hover h3 {
    color: var(--clr-primary);
}

/* Catering Highlights */
.catering-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: center;
}

.catering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15,15,18,0.95), rgba(15,15,18,0.7), rgba(15,15,18,0.95));
    z-index: 1;
}

.catering-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catering-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.catering-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
}

/* Contact & Map Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    background-color: var(--clr-bg-lighter);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-subtle);
    flex-shrink: 0;
}

.contact-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--clr-text);
}

.contact-text p, .contact-text a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.contact-text a:hover {
    color: var(--clr-primary);
}

.map-wrapper {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Form Styles */
.contact-form-wrapper {
    background-color: var(--clr-bg-lighter);
    padding: 3rem;
    border-radius: 8px;
    border: var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--clr-bg-dark);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--clr-text);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(188, 144, 56, 0.2);
}

textarea.form-control {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
    display: none;
    text-align: center;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
    display: block;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #F44336;
    color: #F44336;
    display: block;
}

/* Footer Section */
.footer {
    background-color: #08080a;
    border-top: var(--border-subtle);
    padding: 4rem 0 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-subtle);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
}

.footer-certifications span {
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 1px;
}

/* Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

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

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

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .navbar {
        padding: 1rem 0;
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: var(--border-subtle);
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--clr-bg-lighter);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-left: var(--border-subtle);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 80%;
        margin-top: 1rem;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
