/* Modern Base Styles */
:root {
    --primary-color: #844C15;
    --secondary-color: #844C15;
    --accent-color: #E18F3D;
    --light-color: #fffbeb;
    --medium-color: #fef3c7;
    --dark-color: #78350f;
    --text-color: #44403c;
    --text-light: #78716c;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

section {
    padding: 2rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo > img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    position: relative;
    font-weight: 500;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:hover::after {
    width: 100%;
}

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

.reserve-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.reserve-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

/* Modern About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-image, .about-text {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* Modern Menu Section */
.menu {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, var(--light-color));
    z-index: 1;
}

.menu .container {
    position: relative;
    z-index: 2;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    margin: 0 0.5rem;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn.active::after {
    width: 30px;
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-content {
    display: none;;
}

.menu-content.active {
    display: block;
}

.menu-item-header {
    background-color: transparent;
    margin-top: 30px;
    margin-bottom: 30px;
}

.menu-item-content {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex: 1;
    margin-bottom: 0.5rem
}

.menu-item-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 1rem;
    font-style: italic;
}

.menu-item-quantity:first-of-type {
    margin-top: 3px
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Menu Tabs Updates */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--medium-color);
    padding-bottom: 0.5rem;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    margin: 0 0.5rem;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
    border-radius: 3px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn.active::after {
    width: 40px;
}

/* Responsive Menu Adjustments */
@media (max-width: 576px) {
    
    .menu-item-quantity {
        margin-right: 0;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Modern Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    background-color: var(--light-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.map-placeholder {
    height: 250px;
    background-color: var(--medium-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

input, textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9fafb;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
    background-color: white;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modern Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    color: white;
}

.footer-info h2::after {
    display: none;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.social-links a:hover::after {
    width: 100%;
}

.copyright p {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgb(199, 194, 194);
}

.column {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    header {
        background-color: white;
    }
    
    header .container {
        height: 70px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.75rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .reserve-btn {
        display: none;
    }

    .reserve-btn-mobile {
        display: visible;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .menu-container {
        width: 100%;
        padding: 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item-price {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .menu-item-content {
        flex-direction: column;
    }
}
