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

:root {
    --primary-color: #8B0000;
    --secondary-color: #DAA520;
    --accent-color: #228B22;
    --neutral-light: #F8F5F3;
    --neutral-dark: #2C2C2C;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --border-light: #E5E5E5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--neutral-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background-color: #A00000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, #F0EDE8 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
}

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

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #A00000 100%);
    color: var(--text-light);
    text-align: center;
    padding: 140px 20px 80px;
    margin-top: 80px;
}

.page-hero-content h1 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* Menu Preview */
.menu-preview {
    padding: 80px 20px;
    background: linear-gradient(45deg, #F8F5F3 0%, white 50%, #F8F5F3 100%);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-content {
    padding: 30px;
}

.menu-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.menu-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background-color: white;
}

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

.testimonial-card {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Location Preview */
.location-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, white 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-details {
    margin: 30px 0;
}

.detail {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail strong {
    color: var(--primary-color);
    font-weight: 600;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

/* Story Section */
.story {
    padding: 80px 20px;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 24px;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

/* Values Section */
.values {
    padding: 80px 20px;
    background: linear-gradient(45deg, #F8F5F3 0%, white 50%, #F8F5F3 100%);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* Chef Spotlight */
.chef-spotlight {
    padding: 80px 20px;
    background-color: white;
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.chef-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.chef-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 24px;
}

.chef-credentials {
    margin-top: 32px;
    padding: 24px;
    background: var(--neutral-light);
    border-radius: 12px;
}

.chef-credentials h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.chef-credentials ul {
    list-style: none;
}

.chef-credentials li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.chef-credentials li:last-child {
    border-bottom: none;
}

/* Awards Section */
.awards {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, white 100%);
}

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

.award-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.award-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.award-card h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.award-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-text p {
    margin: 0;
    color: var(--text-secondary);
}

.transport-info {
    margin-top: 40px;
    padding: 24px;
    background: var(--neutral-light);
    border-radius: 12px;
}

.transport-info h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.transport-info p {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.reservation-note {
    margin-top: 24px;
    padding: 20px;
    background: #FFF8DC;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.reservation-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Location Map */
.location-map {
    padding: 80px 20px;
    background: linear-gradient(45deg, #F8F5F3 0%, white 50%, #F8F5F3 100%);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-placeholder {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.map-content h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.nearby-landmarks {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.nearby-landmarks h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.nearby-landmarks ul {
    list-style: none;
}

.nearby-landmarks li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.nearby-landmarks li:last-child {
    border-bottom: none;
}

/* Hours Section */
.hours-section {
    padding: 80px 20px;
    background-color: white;
}

.hours-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--neutral-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
}

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

.day {
    font-weight: 500;
    color: var(--text-primary);
}

.time {
    font-weight: 600;
    color: var(--primary-color);
}

.hours-note {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .story-content,
    .chef-content {
        gap: 40px;
    }
    
    .map-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 16px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content,
    .story-content,
    .chef-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .page-hero {
        padding: 120px 15px 60px;
    }
    
    .feature-card,
    .value-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #DC3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

/* Success Message */
.success-message {
    background: #D4EDDA;
    border: 1px solid #C3E6CB;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}