/* Home Page Specific Styles */

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-catering {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.5rem;
}

/* Remove slider navigation arrows */
.slider-btn {
    display: none;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Chef Section */
.chef-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.chef-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

.chef-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
}

.menu-category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.menu-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-card-content {
    padding: 1.5rem;
}

.menu-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.menu-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.menu-card .category {
    font-size: 0.75rem;
    color: white;
    background: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: #f9fafb;
    overflow: hidden;
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
}

#google-reviews {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 450px;
    flex-shrink: 0;
    border: 2px solid #f3f4f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(240, 89, 45, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    box-shadow: 0 15px 40px rgba(240, 89, 45, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d04520);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(240, 89, 45, 0.3);
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.review-author h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    color: #111827;
    font-weight: 700;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #374151;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

.review-nav-btn.prev {
    left: 0;
}

.review-nav-btn.next {
    right: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

.contact-item p {
    margin: 0.25rem 0;
    color: #6b7280;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

#contactFormMessage {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
}

#contactFormMessage.success {
    background: #d1fae5;
    color: #059669;
}

#contactFormMessage.error {
    background: #fee2e2;
    color: #dc2626;
}

/* Footer */
.main-footer {
    background: #111827;
    color: white;
}

.footer-locations {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    padding: 3rem 0;
}

.footer-locations h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: rgba(55, 65, 81, 0.8);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(55, 65, 81, 1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.location-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-card p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.location-card a {
    color: white;
    text-decoration: none;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    margin-top: auto;
    display: inline-block;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sm:hover {
    background: #d04520;
    transform: scale(1.05);
}

.footer-bottom {
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
    }
    
    .chef-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 3rem;
    }
}

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