/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #44403c;
    background-color: #fafaf9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: rgba(250, 250, 249, 0.8);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e7e5e4;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1rem;
}

.logo-link {
    font-size: 1.875rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #44403c;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #78716c;
    margin: 3px 0;
    transition: 0.3s;
}

.menu {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    color: #78716c;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #769392;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        height: 80vh;
    }
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #769392;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #607a79;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #769392;
    border: 2px solid #769392;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #769392;
    color: white;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Section Titles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #769392;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #78716c;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: #fafaf9;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-image {
        order: 2;
    }
    
    .story-content {
        order: 1;
    }
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-content {
    text-align: left;
}

.story-text {
    color: #78716c;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.story-btn {
    margin-top: 2rem;
}

/* Featured Menu Section */
.featured-menu {
    padding: 5rem 0;
    background-color: #f5f5f4;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #44403c;
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    color: #78716c;
    margin-bottom: 1rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #769392;
}

/* Visual Break Section */
.visual-break {
    height: 16rem;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .visual-break {
        height: 24rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #f5f5f4;
}

.testimonial-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    font-size: 1.25rem;
    font-style: italic;
    color: #44403c;
    margin-bottom: 3rem;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    margin-top: 1rem;
    color: #44403c;
}

/* Footer */
.footer {
    background-color: #e7e5e4;
    color: #78716c;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1c1917;
    margin-bottom: 1rem;
}

.footer-description {
    color: #78716c;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #78716c;
}

.footer-contact a {
    color: #769392;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #769392;
    text-decoration: underline;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #44403c;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #78716c;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #769392;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    background-color: white;
    border: 1px solid #d6d3d1;
    color: #44403c;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    padding: 0.625rem;
}

.form-group input::placeholder {
    color: #78716c;
}

.form-success {
    text-align: center;
    padding: 1rem;
    background-color: #dcfce7;
    border-radius: 0.5rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.5rem;
}

.success-message {
    color: #166534;
}

.hidden {
    display: none;
}

.footer-bottom {
    border-top: 1px solid #d6d3d1;
    padding: 2rem 0;
    text-align: center;
    color: #78716c;
}

/* About Page Styles */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #769392;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #78716c;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
    background-color: #769392;
    color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}

.philosophy-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.philosophy-item {
    padding: 1rem;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #f5f5f4;
    line-height: 1.625;
}

/* Menu Page Styles */
.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-title {
    font-size: 3rem;
    font-weight: 700;
    color: #769392;
    margin-bottom: 1rem;
}

.menu-subtitle {
    font-size: 1.25rem;
    color: #78716c;
    margin-bottom: 3rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #44403c;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #769392;
}

.menu-item {
    padding: 1rem 0;
}

.menu-item:not(:last-child) {
    border-bottom: 1px solid #e7e5e4;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #44403c;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #769392;
}

.item-description {
    color: #78716c;
    margin-top: 0.25rem;
}

/* Contact Page Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #769392;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #78716c;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #44403c;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #78716c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #fafaf9;
    border: 1px solid #d6d3d1;
    color: #44403c;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    padding: 0.625rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #78716c;
}

.form-group textarea {
    min-height: 150px;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #44403c;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #78716c;
}

.contact-details a {
    color: #769392;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid #e7e5e4;
    transition: border-color 0.3s;
}

.map-container img:hover {
    border-color: #769392;
}

/* Legal Pages Styles */
.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #769392;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1.125rem;
    color: #78716c;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.625;
    color: #78716c;
}

.legal-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #44403c;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #44403c;
    margin: 1.5rem 0 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #78716c;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(250, 250, 249, 0.95);
        backdrop-filter: blur(4px);
        padding: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
    }
}