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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Creative Text Header Logo Styles */
#logo {
    height: 60px;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

/* Comprehensive underline removal for entire logo area */
#logo,
#logo *,
.text-logo-header,
.text-logo-header *,
.logo-main,
.logo-main *,
.logo-abba,
.logo-kosher,
.logo-kitchen {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    text-underline-offset: 0 !important;
}

.text-logo-header {
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 18px 28px;
    margin: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(121, 184, 84, 0.15);
}

.text-logo-header::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #79B854, 
        #8BC34A, 
        #4CAF50, 
        #66BB6A, 
        #81C784, 
        #79B854);
    background-size: 300% 300%;
    border-radius: 15px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-logo-header:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(121, 184, 84, 0.3);
}

.text-logo-header:hover::before {
    animation-duration: 1.5s;
    box-shadow: 0 0 20px rgba(121, 184, 84, 0.4);
}

.logo-link {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-link:hover {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-link:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-link:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-link:visited {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Additional safety for all children of logo-link */
.logo-link * {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
}

.logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
    position: relative;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.logo-abba {
    color: #79B854;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(121, 184, 84, 0.2);
    transition: all 0.3s ease;
}

.text-logo-header:hover .logo-abba {
    color: #8BC34A;
    text-shadow: 0 2px 6px rgba(139, 195, 74, 0.4);
    transform: scale(1.02);
}

.logo-kosher {
    color: #2c3e50;
    letter-spacing: 0.8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-logo-header:hover .logo-kosher {
    color: #79B854;
    text-shadow: 0 1px 3px rgba(121, 184, 84, 0.3);
}

.logo-kitchen {
    color: #2c3e50;
    letter-spacing: 0.8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-logo-header:hover .logo-kitchen {
    color: #79B854;
    text-shadow: 0 1px 3px rgba(121, 184, 84, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 25px 0;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #79B854;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #79B854;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    background: #1a3d0f;
}

/* Video Background - Enhanced for desktop compatibility */
.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    overflow: hidden;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translateX(-50%) translateY(-50%);
    border: none;
    pointer-events: none; /* Prevent interaction issues */
}

/* Desktop video optimization */
@media (min-width: 769px) {
    .hero-video-background {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    
    .hero-video-background iframe {
        visibility: visible;
        z-index: -2;
        opacity: 1;
        pointer-events: none;
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
    }
    
    .hero {
        position: relative;
        overflow: hidden;
        background: #1a3d0f; /* Fallback color while video loads */
    }
    
    /* Ensure video plays immediately on desktop */
    .hero-video-background {
        will-change: transform;
    }
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-badge {
    margin-bottom: 30px;
}

.badge-text {
    display: inline-block;
    background: #79B854;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-main {
    margin-bottom: 40px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tagline-accent {
    font-size: 1.5rem;
    color: #79B854;
}

.tagline-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
}

.title-accent {
    color: #79B854;
    display: block;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #79B854;
}

.divider-star {
    font-size: 1.5rem;
    color: #79B854;
}

.description-highlight {
    color: #79B854;
    font-weight: 600;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(121, 184, 84, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-icon {
    font-size: 1.5rem;
}

.location-text {
    text-align: left;
    line-height: 1.5;
}

.hero-title {
    font-size: 3.5em;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

/* Animated Logo Styles */
.animated-logo span {
    display: inline-block;
    animation: letterFloat 3s ease-in-out infinite;
}

.animated-logo .letter-a { animation-delay: 0.1s; }
.animated-logo .letter-b1 { animation-delay: 0.2s; }
.animated-logo .letter-b2 { animation-delay: 0.3s; }
.animated-logo .letter-a2 { animation-delay: 0.4s; }
.animated-logo .apostrophe { animation-delay: 0.5s; }

.animated-logo .letter-k { animation-delay: 0.6s; }
.animated-logo .letter-o { animation-delay: 0.7s; }
.animated-logo .letter-s { animation-delay: 0.8s; }
.animated-logo .letter-h { animation-delay: 0.9s; }
.animated-logo .letter-e { animation-delay: 1.0s; }
.animated-logo .letter-r { animation-delay: 1.1s; }

.animated-logo .letter-kit { animation-delay: 1.3s; }
.animated-logo .letter-i { animation-delay: 1.4s; }
.animated-logo .letter-t { animation-delay: 1.5s; }
.animated-logo .letter-c { animation-delay: 1.6s; }
.animated-logo .letter-h2 { animation-delay: 1.7s; }
.animated-logo .letter-e2 { animation-delay: 1.8s; }
.animated-logo .letter-n { animation-delay: 1.9s; }

@keyframes letterFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    25% { 
        transform: translateY(-8px) scale(1.05);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    }
    50% { 
        transform: translateY(-5px) scale(1.02);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    75% { 
        transform: translateY(-3px) scale(1.01);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
}

.animated-logo:hover span {
    animation-duration: 1s;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #79B854;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    background-clip: padding-box;
}

.cta-button.primary {
    background: linear-gradient(135deg, #79B854 0%, #66BB6A 25%, #4CAF50 50%, #8BC34A 75%, #81C784 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 20px rgba(121, 184, 84, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: subtleGradientShift 4s ease-in-out infinite;
}

@keyframes subtleGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #79B854, 
        #8BC34A, 
        #4CAF50, 
        #66BB6A, 
        #81C784, 
        #79B854);
    background-size: 300% 300%;
    border-radius: 53px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(121, 184, 84, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #8BC34A 0%, #81C784 25%, #79B854 50%, #66BB6A 75%, #4CAF50 100%);
    animation-duration: 2s;
}

.cta-button.primary:hover::before {
    animation-duration: 1.5s;
    box-shadow: 0 0 20px rgba(121, 184, 84, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #3d566e 50%, #2c3e50 75%, #1a252f 100%);
    background-size: 200% 200%;
    color: white;
    border: 2px solid #79B854;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: subtleSecondaryShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes subtleSecondaryShift {
    0%, 100% {
        background-position: 0% 50%;
        border-color: #79B854;
    }
    50% {
        background-position: 100% 50%;
        border-color: #8BC34A;
    }
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #79B854, 
        #8BC34A, 
        #4CAF50, 
        #66BB6A, 
        #81C784, 
        #79B854);
    background-size: 300% 300%;
    border-radius: 52px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #79B854 0%, #66BB6A 25%, #4CAF50 50%, #8BC34A 75%, #81C784 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(121, 184, 84, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
    animation-duration: 2s;
}

.cta-button.secondary:hover::before {
    animation-duration: 1.5s;
    background: linear-gradient(45deg, 
        #ffffff, 
        #f8f9fa, 
        #e9ecef, 
        #ffffff, 
        #f1f3f4, 
        #ffffff);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

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

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a2332;
    position: relative;
    font-weight: 800;
}

.contact-section h2 {
    color: #1a2332;
    font-size: 2.8em;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #79B854;
    margin: 20px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.features {
    margin-top: 30px;
}

.feature {
    margin-bottom: 20px;
}

.feature h3 {
    color: #79B854;
    margin-bottom: 8px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Modern Content Placeholders */
.content-placeholder {
    background: #f8f9fa;
    border: 2px solid #79B854;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.placeholder-header h4 {
    color: #79B854;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.header-line {
    width: 60px;
    height: 2px;
    background: #79B854;
    margin: 0 auto 1.5rem;
}

.placeholder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    color: #333;
}

.placeholder-footer p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Menu Section */
.menu-categories {
    margin-top: 50px;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

.dish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-info {
    padding: 25px;
}

.dish-info h4 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.dish-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Specialties Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.specialty-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.specialty-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #79B854;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.icon-emoji {
    font-size: 2rem;
}

.specialty-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial cite {
    font-weight: bold;
    color: #79B854;
}

/* Catering Section */
.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.highlight {
    font-size: 1.3em;
    color: #79B854;
    font-weight: bold;
    margin-bottom: 20px;
}

.catering-features {
    list-style: none;
    margin: 30px 0;
}

.catering-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.catering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #79B854;
    font-weight: bold;
}

.catering-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.catering-services-grid {
    background: #f8f9fa;
    border: 2px solid #79B854;
    border-radius: 15px;
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-header h4 {
    color: #79B854;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-icon {
    font-size: 1.5rem;
}

.service-name {
    font-weight: 600;
    color: #333;
}

.service-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.service-footer p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Contact Section - Enhanced Contrast */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.info-block {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #79B854;
}

.info-block h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
}

.info-block p {
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.05em;
}

.info-block strong {
    color: #1a2332;
    font-weight: 700;
}

#contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(121, 184, 84, 0.1);
}

#contact-form h3 {
    margin-bottom: 30px;
    color: #1a2332;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a2332;
    font-size: 1.05em;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #c0c5cc;
    border-radius: 8px;
    font-size: 1.05em;
    color: #1a2332;
    background: #fafbfc;
    transition: all 0.3s ease;
    font-weight: 500;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: #79B854;
    background: white;
    box-shadow: 0 0 0 3px rgba(121, 184, 84, 0.1);
    color: #1a2332;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

#contact-form button {
    background: linear-gradient(135deg, #79B854 0%, #66BB6A 25%, #4CAF50 50%, #8BC34A 75%, #81C784 100%);
    background-size: 200% 200%;
    color: white;
    border: 3px solid transparent;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(121, 184, 84, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: subtleGradientShift 4s ease-in-out infinite;
}

#contact-form button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #79B854, 
        #8BC34A, 
        #4CAF50, 
        #66BB6A, 
        #81C784, 
        #79B854);
    background-size: 300% 300%;
    border-radius: 53px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

#contact-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(121, 184, 84, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #8BC34A 0%, #81C784 25%, #79B854 50%, #66BB6A 75%, #4CAF50 100%);
    animation-duration: 2s;
}

#contact-form button:hover::before {
    animation-duration: 1.5s;
    box-shadow: 0 0 20px rgba(121, 184, 84, 0.5);
}

#form-status {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #79B854 0%, #66BB6A 25%, #4CAF50 50%, #8BC34A 75%, #81C784 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(121, 184, 84, 0.3);
    animation: subtleGradientShift 4s ease-in-out infinite;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(121, 184, 84, 0.4);
    background: linear-gradient(135deg, #8BC34A 0%, #81C784 25%, #79B854 50%, #66BB6A 75%, #4CAF50 100%);
    animation-duration: 2s;
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-arrow {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover .scroll-arrow {
    transform: translateY(-2px);
    animation: bounceUp 0.6s ease infinite alternate;
}

@keyframes bounceUp {
    0% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(-6px);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #79B854;
    margin-bottom: 25px;
    font-size: 1.4em;
    font-weight: 700;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #79B854, #68a047);
    border-radius: 2px;
}

.footer-logo h4 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #79B854;
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-description {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.footer-certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(121, 184, 84, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(121, 184, 84, 0.3);
}

.cert-icon {
    font-size: 1.2em;
}

.cert-text {
    font-size: 0.9em;
    font-weight: 600;
    color: #79B854;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05em;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #79B854;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #79B854;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.3em;
    margin-top: 5px;
}

.contact-info strong {
    color: #79B854;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-info p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

.footer-specialties {
    margin-top: 25px;
}

.footer-specialties h5 {
    color: #79B854;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(121, 184, 84, 0.15);
    color: #79B854;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(121, 184, 84, 0.3);
}

.footer-middle {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    margin: 0 -50px;
    margin-bottom: 40px;
}

.footer-mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 50px;
}

.footer-mission h5 {
    color: #79B854;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-mission p {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.8;
    color: #ecf0f1;
}

.footer-bottom {
    border-top: 2px solid rgba(121, 184, 84, 0.3);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #bdc3c7;
}

.kosher-notice {
    font-size: 0.9em;
    color: #79B854 !important;
    font-weight: 500;
    margin-top: 5px !important;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #79B854;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #79B854;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hero Section - Above the fold optimization */
    .hero {
        min-height: 100vh;
        padding: 20px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2em;
        margin: 10px 0;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1em;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .tagline-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-location {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 15px;
        margin: 15px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 1rem;
        text-align: center;
    }

    /* Remove video background on mobile */
    .hero-video-background {
        display: none !important;
    }

    /* Mobile hero background */
    .hero {
        background: linear-gradient(135deg, #1a3d0f 0%, #2d5016 50%, #1a3d0f 100%) !important;
        background-size: 200% 200%;
        animation: subtleMobileGradient 8s ease-in-out infinite;
    }

    @keyframes subtleMobileGradient {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }

    /* Navigation */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .text-logo-header {
        padding: 14px 20px;
        margin: 12px 15px;
        border-radius: 10px;
        border-width: 2px;
    }

    .logo-main {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo-abba {
        letter-spacing: 1.2px;
        font-size: 1em;
    }

    .logo-kosher,
    .logo-kitchen {
        font-size: 0.9em;
        letter-spacing: 0.6px;
    }

    /* Content sections */
    .about-content,
    .catering-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Fix mobile section spacing */
    section {
        padding: 50px 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Fix catering services grid on mobile */
    .catering-services-grid {
        margin: 20px 0;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 15px 0;
    }

    .service-item {
        padding: 12px;
        text-align: center;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .service-icon {
        font-size: 1.2em;
        margin-bottom: 8px;
        display: block;
    }

    .service-name {
        font-size: 0.9em;
        font-weight: 600;
    }

    /* Fix mobile contact section */
    .contact-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    }

    .contact-section h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
        text-align: center;
        color: #1a2332;
        font-weight: 800;
    }

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

    .info-block {
        margin-bottom: 30px;
        text-align: center;
        padding: 25px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-left: 4px solid #79B854;
    }

    .info-block h3 {
        margin-bottom: 15px;
        color: #1a2332;
        font-weight: 700;
        font-size: 1.3em;
    }

    .info-block p {
        color: #2c3e50;
        font-size: 1.05em;
        line-height: 1.7;
    }

    .info-block strong {
        color: #1a2332;
        font-weight: 700;
    }

    #contact-form {
        padding: 35px 25px;
        margin: 0 10px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border: 1px solid rgba(121, 184, 84, 0.1);
    }

    #contact-form h3 {
        color: #1a2332;
        font-size: 1.4em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 25px;
    }

    #contact-form label {
        color: #1a2332;
        font-weight: 700;
        font-size: 1.05em;
        margin-bottom: 8px;
    }

    #contact-form input,
    #contact-form textarea,
    #contact-form select {
        padding: 15px;
        border: 2px solid #c0c5cc;
        background: #fafbfc;
        color: #1a2332;
        font-size: 1.05em;
        font-weight: 500;
    }

    #contact-form input:focus,
    #contact-form textarea:focus,
    #contact-form select:focus {
        border-color: #79B854;
        background: white;
        box-shadow: 0 0 0 3px rgba(121, 184, 84, 0.1);
    }

    /* Mobile scroll to top button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }

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

    .specialties-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .specialty-item {
        margin-bottom: 20px;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    /* Mobile overlay enhancement */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    /* Ensure content scrolls properly */
    body {
        overflow-x: hidden;
    }

    /* Additional mobile fixes */
    .catering-section {
        clear: both;
        overflow: hidden;
    }

    .catering-content {
        margin-bottom: 30px;
    }

    .catering-text {
        margin-bottom: 25px;
    }

    .catering-image {
        margin-top: 20px;
    }

    /* Mobile Footer Styles */
    footer {
        padding: 50px 0 0;
    }

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

    .footer-section h4 {
        font-size: 1.3em;
        text-align: center;
    }

    .footer-logo h4 {
        font-size: 1.6em;
        text-align: center;
    }

    .footer-tagline {
        text-align: center;
        font-size: 1em;
    }

    .footer-description {
        text-align: center;
        font-size: 1em;
    }

    .footer-certifications {
        justify-content: center;
        gap: 15px;
    }

    .cert-badge {
        padding: 8px 12px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        font-size: 1.5em;
    }

    .footer-specialties {
        text-align: center;
    }

    .specialty-tags {
        justify-content: center;
    }

    .footer-middle {
        margin: 0 -20px;
        margin-bottom: 30px;
        padding: 30px 0;
    }

    .footer-mission {
        padding: 0 20px;
    }

    .footer-mission h5 {
        font-size: 1.2em;
    }

    .footer-mission p {
        font-size: 1em;
        line-height: 1.6;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile devices - further optimization */
    .hero {
        padding: 15px 5px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8em;
        margin: 8px 0;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.95em;
        margin-bottom: 18px;
    }

    .tagline-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .hero-location {
        padding: 12px;
        margin: 12px 0;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 18px;
    }

    /* Remove video background on small mobile */
    .hero-video-background {
        display: none !important;
    }

    /* Content sections */
    .placeholder-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-item {
        padding: 10px;
        margin-bottom: 10px;
    }

    .service-icon {
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    .service-name {
        font-size: 0.85em;
    }

    .container {
        padding: 0 15px;
    }

    #contact-form {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .info-block {
        padding: 15px;
        margin-bottom: 20px;
    }

    .catering-services-grid {
        padding: 15px;
        margin: 15px 0;
    }

    .text-logo-header {
        padding: 8px 12px;
        margin: 0 5px;
        border-radius: 8px;
        border-width: 2px;
    }

    .logo-main {
        font-size: 1rem;
        gap: 6px;
    }

    .logo-abba {
        letter-spacing: 1px;
        font-size: 1em;
    }

    .logo-kosher,
    .logo-kitchen {
        font-size: 0.85em;
        letter-spacing: 0.5px;
    }

    /* Typography adjustments */
    h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    section {
        padding: 40px 0;
        margin-bottom: 20px;
    }

    /* Ensure sections don't overlap */
    .about-section,
    .specialties-section,
    .testimonials-section,
    .catering-section {
        position: relative;
        z-index: 1;
        background: white;
        margin-bottom: 10px;
    }

    .contact-section {
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }
} 