.hero {
    position: relative;
    background: var(--secondary-bg-color);
    padding: 4rem 2rem 3rem;
    text-align: center;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 var(--padding-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--margin-large);
}

.hero h1 {
    color: var(--primary-text-color);
    font-family: var(--font-family-custom);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    text-shadow: none;
    letter-spacing: -0.02em;
    font-weight: normal;
    max-width: 85%;
    text-align: center;
    padding: 0;
}

/* Removed gradient text effects for newspaper style */

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

.hero h1 em {
    color: var(--accent-color);
    font-style: normal;
    font-weight: normal;
}

.hero p {
    color: var(--secondary-text-color);
    font-family: var(--font-family-primary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    text-shadow: none;
    max-width: 700px;
    text-align: center;
    font-weight: normal;
}

.hero p em {
    color: var(--accent-color);
    font-style: normal;
    font-weight: normal;
}

.btn-container {
    display: flex;
    gap: var(--margin-large);
    justify-content: center;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: normal;
    font-size: var(--font-size-base);
    letter-spacing: 0.01em;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    min-height: 44px;
}

.btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green-400) 0%, var(--forest-green-500) 50%, var(--forest-green-600) 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(8, 172, 70, 0.4), 0 0 0 1px rgba(11, 197, 81, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 0.5s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(11, 197, 81, 0.1) 0%, rgba(8, 172, 70, 0.05) 100%);
    color: var(--forest-green-200);
    border: 2px solid var(--forest-green-300);
    box-shadow: 0 4px 15px rgba(11, 197, 81, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(8, 172, 70, 0.5), 0 0 0 1px rgba(15, 224, 93, 0.4);
    background: linear-gradient(135deg, var(--forest-green-300) 0%, var(--forest-green-400) 50%, var(--forest-green-500) 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover svg {
    transform: scale(1.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--forest-green-300) 0%, var(--forest-green-400) 100%);
    color: white;
    border-color: var(--forest-green-200);
    box-shadow: 0 8px 25px rgba(11, 197, 81, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover svg {
    transform: translateX(2px);
}

/* Section Divider */
.btn-container::after {
    content: '';
    position: absolute;
    bottom: calc(var(--margin-large) * -1.5);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--forest-green-300), transparent);
    opacity: 0.3;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--margin-large);
    flex-wrap: wrap;
}

/* Custom properties for trust indicators using forest green variables */
.trust-indicators {
    --trust-border-color: rgba(11, 197, 81, 0.1);
    --trust-border-hover: rgba(11, 197, 81, 0.15);
    --trust-bg-hover: rgba(11, 197, 81, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--trust-border-color);
    transition: all var(--transition-speed) ease;
    opacity: 0.8;
}

.trust-item:hover {
    background: var(--trust-bg-hover);
    border-color: var(--trust-border-hover);
    opacity: 1;
}

.trust-item svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
    color: var(--forest-green-200);
}

.trust-item:hover svg {
    opacity: 1;
    color: var(--forest-green-100);
}

.trust-text {
    color: var(--secondary-text-color);
    font-size: 12px;
    font-weight: normal;
    font-family: var(--font-family-primary);
}

/* Hero Food Image - Restaurant Authentic */
.hero-food-image {
    position: relative;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(1, 68, 23, 0.3),
        0 0 0 1px rgba(11, 197, 81, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.hero-food-image:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 30px 60px rgba(1, 68, 23, 0.4),
        0 0 0 1px rgba(11, 197, 81, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-food-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    transition: filter var(--transition-speed) ease;
}

.hero-food-image:hover img {
    filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 197, 81, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(1, 68, 23, 0.1) 100%
    );
    pointer-events: none;
}

/* Remove wave decoration for cleaner look */

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: clamp(2.25rem, 4vw, 3.5rem);
    }
    
    .hero p {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
    }
    
    .hero-food-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem var(--padding-medium) 2rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.3;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 var(--padding-small);
    }
    
    .btn-container {
        flex-direction: column;
        gap: var(--margin-medium);
        padding: 0 var(--padding-medium);
    }
    
    .trust-indicators {
        gap: var(--margin-medium);
        margin-top: var(--margin-large);
    }
    
    .btn-container::after {
        width: 40px;
        bottom: calc(var(--margin-large) * -1);
    }
    
    .trust-item {
        padding: 4px 10px;
    }
    
    .trust-text {
        font-size: 11px;
    }
    
    .trust-icon {
        font-size: 11px;
    }
    
    .hero-food-image {
        max-width: 300px;
        margin-bottom: var(--margin-medium);
    }
} 