:root {
    --bordeaux: #7a1028;
    --crimson: #a3142f;
    --dark-bg: #1a0a0e;
    --cream: #f5e6c8;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: none;
    flex-direction: column;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
    }
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bordeaux);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
    z-index: 30;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: var(--gray-50);
    color: var(--bordeaux);
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/food-trays.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 10, 14, 0.85), rgba(122, 16, 40, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-banner {
    max-width: 720px;
    width: 100%;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: white;
    max-width: 672px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--bordeaux);
    color: white;
    box-shadow: 0 4px 12px rgba(122, 16, 40, 0.3);
}

.btn-primary:hover {
    background: var(--crimson);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bordeaux);
}

.btn-block {
    width: 100%;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-white {
    background: white;
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bordeaux);
    margin-bottom: 1rem;
}

.divider {
    width: 96px;
    height: 4px;
    background: var(--crimson);
    margin: 0 auto 3rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

/* About */
.about-content {
    max-width: 768px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.about-grid {
    display: grid;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.address {
    font-size: 1rem !important;
    color: var(--gray-600) !important;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature {
    text-align: center;
    transition: transform 0.2s;
}

.feature:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bordeaux);
    color: white;
    font-size: 2rem;
    transition: background 0.2s;
}

.feature:hover .feature-icon {
    background: var(--crimson);
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-600);
}

/* Services */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--gray-600);
}

.service-area {
    background: var(--bordeaux);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
}

.service-area h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-area p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Menu */
.menu-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.menu-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

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

.menu-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bordeaux);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--crimson);
    margin-bottom: 1rem;
}

.menu-card ul {
    list-style: none;
}

.menu-card li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.menu-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--crimson);
    border-radius: 50%;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    aspect-ratio: 1;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: var(--bordeaux);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 0.75rem;
    text-align: center;
}

.gallery-note p {
    color: var(--gray-800);
    line-height: 1.6;
}

.gallery-note strong {
    color: var(--bordeaux);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.map-container {
    margin-top: 1.5rem;
}

.contact-form-wrapper h3,
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bordeaux);
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-info .info-item {
    margin-bottom: 1.5rem;
}

.contact-info strong {
    display: block;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--bordeaux);
    text-decoration: none;
    font-size: 0.875rem;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.footer-col p {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-col p a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-col p a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-list {
    list-style: none;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-list li {
    margin-bottom: 0.25rem;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}
