:root {
    --primary-color: #FF6B00;
    --secondary-color: #000000;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #000000;
    --white-color: #ffffff;
    --font-family: 'Sarabun', sans-serif;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(-20px);
        transition: 0.3s ease-in-out;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }
    .nav-links li:nth-child(8) { transition-delay: 0.8s; }

    .nav-links a {
        color: var(--dark-color);
        font-size: 1.2rem;
        padding: 0.5rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }

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

    .nav-links a::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    height: 80vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-bg {
    width: 100%;
    height: 100%;
    aspect-ratio: 2 / 1;
    background-image: url('/images/bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-person {
    aspect-ratio: 3 / 4;
    width: min(300px, 30vw);
    position: absolute;
    right: 20px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.hero-person-img {
    height: 100%;
    width: auto;

}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0;
    width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    font-size: 1rem;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #FF8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .btn {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }


}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        min-width: 130px;
        font-size: 0.9rem;
    }


}

/* Responsive Styles */
@media (min-width: 768px) {
    .hero {
        min-height: 700px;
        height: auto;
        align-items: center;
    }
    
    .hero-content {
        padding: 4rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-person {
        width: auto;
        height: 90%;
        right: 80px;
        bottom: 0;
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        max-width: 60%;
    }
}

@media (min-width: 1440px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #6C63FF;
}

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

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-image {
    position: relative;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #6C63FF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.menu-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-content .btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
}

.menu-details-button {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.menu-details-button .btn {
    min-width: 200px;
    font-size: 1.1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Contact Info Styles */
.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.contact-info li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info li a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Footer Links Styles */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Social Media Styles */
.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Payment Methods Styles */

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icons i,
.payment-icons img {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.payment-icons i:hover,
.payment-icons img:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Footer Bottom Styles */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom a {
    color: #fff !important;
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 64px;
    height: 64px;
}

.feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 0;
    }

    .why-choose-us h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon svg {
        width: 48px;
        height: 48px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
}

/* Portfolio Section */
.portfolio {
    background-color: #f8f9fa;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.portfolio h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.portfolio-button {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.portfolio-button .btn {
    min-width: 200px;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {

    .portfolio h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-image {
        height: 250px;
    }

    .portfolio-content h3 {
        font-size: 1.2rem;
    }

    .portfolio-content p {
        font-size: 0.95rem;
    }

    .portfolio-button .btn {
        width: 90%;
        max-width: 300px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Delivery Area Section */
.delivery-area {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.delivery-area h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.delivery-area h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.delivery-list {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.delivery-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.delivery-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.delivery-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
}

@media (max-width: 992px) {
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .delivery-list {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .delivery-area {
        padding: 3rem 0;
    }

    .delivery-area h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .delivery-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .delivery-list li::before {
        top: 7px;
        width: 6px;
        height: 6px;
    }

    .map-container {
        height: 350px;
    }

    .map-container iframe {
        height: 100%;
    }
}

/* Ordering Steps Section */
.ordering-steps {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.ordering-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

.ordering-steps h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FF6B00;
}

.ordering-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-icon {
    margin-bottom: 1rem;
    color: #FF6B00;
}

.step-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .ordering-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Table Section */
.menu-table-section {
    background-color: #f9f9f9;
}

.menu-table-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.price-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
}

.price-box h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price-box .price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
    margin: 0.5rem 0;
}

.price-box p:last-child {
    color: #666;
    font-size: 0.9rem;
}

.menu-table-container {
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.menu-table th,
.menu-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.menu-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.menu-table td {
    color: #666;
}

.menu-table .category-header {
    background-color: #f1f1f1;
}

.menu-table .category-header td {
    font-weight: 600;
    color: #333;
    padding: 1rem;
    text-align: center;
}

.menu-table tr:hover {
    background-color: #f8f9fa;
}

.menu-table i.fa-check {
    color: #27ae60;
    font-size: 1.1rem;
}

.menu-notes {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-notes h3 {
    color: #333;
    margin-bottom: 1rem;
}

.menu-notes ul {
    list-style: none;
    padding: 0;
}

.menu-notes li {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.menu-notes strong {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .price-comparison {
        flex-direction: column;
        align-items: center;
    }

    .price-box {
        width: 100%;
        max-width: 300px;
    }

    .menu-table th,
    .menu-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .menu-table .category-header td {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-table th,
    .menu-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .menu-notes {
        padding: 1rem;
    }
}

main {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

/* Menu Intro Section */
.menu-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.menu-intro h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-intro ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-intro li {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.menu-intro li:last-child {
    margin-bottom: 0;
}

.menu-intro strong {
    color: #333;
    font-weight: 600;
}

.menu-intro small {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-intro {
        margin-bottom: 2rem;
    }

    .menu-intro h2 {
        font-size: 1.3rem;
    }

    .menu-intro li {
        font-size: 1rem;
    }
}

/* Feature Image */
.feature-image {
    margin-bottom: 2rem;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .feature-image {
        margin-bottom: 1.5rem;
    }
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    }

    .gallery-caption span {
        font-size: 1rem;
    }
}

/* Icon Boxes */
.icon-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.icon-box {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.icon-box .icon i {
    font-size: 2rem;
    color: #fff;
}

.icon-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.icon-box p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .icon-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icon-box {
        padding: 1.5rem;
    }
    
    .icon-box .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-box .icon i {
        font-size: 1.5rem;
    }
}

/* Image Boxes */
.image-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
}

.image-box .image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box:hover .image img {
    transform: scale(1.1);
}

.image-box .content {
    padding: 1.5rem;
}

.image-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.image-box p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .image-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-box .image {
        height: 180px;
    }
    
    .image-box .content {
        padding: 1.25rem;
    }
}

/* Menu List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.menu-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.menu-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.snackbox-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 1.5rem 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .snackbox-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        justify-content: center;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    margin: 1rem 0 0.5rem;
    padding: 0 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.team-member p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .member-image {
        height: 250px;
    }
}

/* Team Photo */
.team-photo {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .team-photo {
        margin: 1.5rem 0;
        border-radius: 10px;
    }
}