* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

nav {
    background: linear-gradient(90deg, #4a2c0d, #e67e22);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

nav:hover {
    padding: 1.8rem 2.5rem;
    background: linear-gradient(90deg, #3d240a, #d35400);
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

nav:hover .logo-img {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2.5rem;
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #f1c40f;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(90deg, #4a2c0d, #e67e22);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
    }
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('back.jpg') no-repeat center center;
    background-size: cover;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Georgia', serif;
}

.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff8c42;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e07a38;
    transform: translateY(-2px);
}

.small-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.featured-dish {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
}

.featured-dish h2 {
    font-size: 2rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.dish-card {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dish-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.dish-info {
    padding: 1rem;
    text-align: left;
}

.dish-info h3 {
    font-size: 1.8rem;
    color: #4a2c0d;
    margin-bottom: 0.5rem;
}

.dish-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.dish-info .price {
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 1rem;
}
menu-item-detail img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}


.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(90deg, #4a2c0d, #e67e22);
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-section {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f9f9f9);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}
.menu-item-detail img, .team-member-detail img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}


@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #e67e22;
    margin: 1.5rem 0 1rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #4a2c0d, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.about-text h2:hover {
    transform: scale(1.05);
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.8;
    position: relative;
}

.about-text p::before {
    content: "✨";
    position: absolute;
    left: -1.5rem;
    color: #e67e22;
    opacity: 0.7;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-detail {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f5e8c7);
    overflow: visible; 
    min-height: auto; 
}

.team-member-detail img {
    width: 100%;
    max-width: 300px;  
    height: auto; 
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain; 
}

.about-image img:hover {
    transform: scale(1.05);
}

.team-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #f9f9f9;
}

.team-section h2 {
    font-size: 2rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    border: 1px solid #e67e22;
    border-radius: 10px;
    padding: 1rem;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #4a2c0d;
    margin: 1rem 0;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

.team-member:hover {
    transform: translateY(-5px);
}

.contact-section {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f5e8c7);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #4a2c0d, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-info p strong {
    color: #4a2c0d;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #4a2c0d, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #e67e22;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d35400;
    box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 0.9rem 2rem;
    background: linear-gradient(90deg, #e67e22, #d35400);
    border: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    background: linear-gradient(90deg, #d35400, #e67e22);
    transform: translateY(-2px);
}

.map-section {
    margin-top: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

.map-section h2 {
    font-size: 1.8rem;
    color: #4a2c0d;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.map-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-section img:hover {
    transform: scale(1.02);
}

.menu-section {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f5e8c7);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.menu-section h1 {
    font-size: 2.5rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.menu-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #e67e22, #d35400) 1;
    border-radius: 10px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-item h3 {
    font-size: 1.6rem;
    color: #4a2c0d;
    margin: 1rem 0;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #4a2c0d, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.6;
}

.menu-item .price {
    font-size: 1.3rem;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.blog-section {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f0e6d2);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.blog-section h1 {
    font-size: 2.5rem;
    color: #4a2c0d;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.blog-post {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #e67e22, #d35400) 1;
    border-radius: 10px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.blog-post:hover img {
    transform: scale(1.1);
}

.blog-post h2 {
    font-size: 1.6rem;
    color: #4a2c0d;
    margin: 1rem 0;
    font-family: 'Georgia', serif;
    background: linear-gradient(45deg, #4a2c0d, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-post p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.6;
}

.blog-post .small-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-post .small-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.blog-post-detail {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f5e8c7);
    overflow: visible;
    min-height: auto;
}

.blog-post-detail img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.blog-post {
    text-align: center;
    overflow: visible;
    min-height: auto;
    padding: 1rem;
}

.blog-post img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .menu-item,
    .blog-post {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        max-width: 100%;
    }

    .team-member {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .menu-section h1,
    .blog-section h1 {
        font-size: 2rem;
    }

    .menu-item h3,
    .blog-post h2 {
        font-size: 1.4rem;
    }

    .menu-item .price,
    .blog-post p {
        font-size: 1rem;
    }

    .about-section h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-info p,
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
    }

    .map-section img {
        max-width: 100%;
    }
}