:root {
    --primary-color: #2BA9A9;
    --secondary-color: #ffffff;
    --text-color: #333333;
}

body {
    font-family: 'Noto Sans Thai', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}
.menu-section {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.menu-section h2 {
    color: #2BA9A9;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.8rem;
    line-height: 1.3;
}

.menu-section p {
    text-align: center;
    margin-bottom: 60px;
    color: #2BA9A9;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-section h3 {
    color: #334834;
    margin-top: 25px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
}
/* Navbar */
.navbar {
    background-color: #2BA9A9;
    padding: 0;
    height: 80px;
}

.navbar-brand {
    position: relative;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 120px;
    margin-top: -5px;
}
.nav-link {
    color: var(--secondary-color) !important;
    margin: 0 1rem;
    font-weight: 500;
}

.nav-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links img {
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* This is equivalent to #0000008C */
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}
.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}
/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel, .carousel-inner, .carousel-item {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex;
    width: 100%;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}
.hero p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(217, 217, 217, 0.3);
    margin: 0;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 2;
    display: flex;
    gap: 12px;
    list-style: none;
}/* Remove duplicate carousel-indicators styles */
.custom-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(217, 217, 217, 0.3);
    margin: 0;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 2;
    display: flex;
    gap: 12px;
}
.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    padding: 0;
    margin: 0;
    transition: background-color 0.3s ease;
}
.custom-indicators button.active {
    background-color: #000000;
}
.custom-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 1;
}
.custom-indicators .active {
    background-color: #000000 !important;
}
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 80px;
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.btn-order {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 3px solid var(--secondary-color);
    border-radius: 0px;
    font-weight: 1000;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-order:hover {
    background-color: var(--secondary-color);
    color: #334834;
}
/* Menu Section */
.map-section {
    padding: 0;
    position: relative;
    background-color: #ffffff;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.menu-item {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.menu-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 15px;
}
/* Story Section */
.story-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.pattern-bg {
    background-color: #ffffff;
    min-height: 600px;
    position: relative;
}
.pattern-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/food-pattern.jpg');
    background-size: 100%;
    background-position: center;
}
.btn-order {
    background-color: #2BA9A9;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}
.content-bg {
    background-color: #2BA9A9;
    padding: 60px 60px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}
.services-section {
    padding: 80px 0;
    text-align: center;
}
.services-section h2 {
    color: #334834;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.services-section p {
    color: #2BA9A9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .down {
    color: #334834;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}
.service-item {
    margin-bottom: 30px;
}
.service-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1rem;
}
.service-item h3 {
    color: #2BA9A9;
    font-weight: 600;
}
.content-wrapper {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.food-display {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}
.content-image {
    width: 100%;
    height: auto;
    max-width: none;
    transform: scale(1) scaleX(-1);
}
.why-us-section {
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.testimonial-img-wrapper {
    width: 600px;
    height: 372px;
    position: relative;
    overflow: hidden;
    border-radius: 220px;
    margin: 0 auto;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .testimonial-img-wrapper {
        width: 100%;
        height: 300px;
        border-radius: 150px;
        margin-bottom: 2rem;
    }
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials-section h2 {
    color: #334834;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.testimonial-text {
    color: #334834;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.client-info {
    text-align: center;
}
.client-name {
    color: #334834;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.client-role {
    color: #666;
    margin: 0;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .testimonial-content {
        margin-top: 2rem;
        text-align: center;
    }
}
.testimonial-text {
    color: #334834;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.client-info {
    text-align: center;
}
.client-name {
    color: #334834;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.client-role {
    color: #666;
    margin: 0;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .testimonial-content {
        margin-top: 2rem;
        text-align: center;
    }
}
.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/food-pattern-1.png');
    background-repeat: repeat;
    background-size: 1500px;
    opacity: 0.1;
    z-index: 0;
}

.food-collection-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

.food-collection {
    width: 100%;
    height: auto;
    position: relative;
}

/* Remove the old pattern-background class since we're using a section-wide background */
.pattern-background {
    display: none;
}

/* Ensure content stays above the pattern */
.why-us-section .container {
    position: relative;
    z-index: 1;
}
.why-us-section h2 {
    color: #334834;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.why-us-section p {
    color: #334834;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.stats {
    margin-top: 2rem;
}
.stat-item {
    margin-bottom: 1.5rem;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #334834;
    font-weight: 500;
}
.progress {
    height: 8px;
    background-color: #E9ECEF;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    background-color: #334834;
    transition: width 0.6s ease;
}
.why-us-section h2 {
    color: #334834;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.why-us-section p {
    color: #334834;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.stats {
    margin-top: 2rem;
}
.stat-item {
    margin-bottom: 1.5rem;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #334834;
    font-weight: 500;
}
.progress {
    height: 40px;
    background-color: #E9ECEF;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.progress-bar {
    background-color: #334834;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    justify-content: space-between;
    padding-right: 15px;
    color: white;
    font-weight: 500;
}
.stat-item {
    margin-bottom: 1.5rem;
}
.progress {
    height: 10px;
    background-color: #E9ECEF;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 5px;
}
.bg-dark-green {
    background-color: #334834;
}
.progress-bar {
    transition: width 0.6s ease;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    color: #334834;
    font-weight: 500;
    margin-bottom: 20px;
}
.stat-item {
    margin-bottom: 1rem;
}
.progress-bar {
    background-color: #334834;
    transition: width 0.6s ease;
}
@media (max-width: 768px) {
    .content-bg {
        padding: 40px 20px;
    }
    .content-image {
        transform: scaleX(-1);
    }
}
.footer {
    background-color: #2BA9A9;
    color: white;
    padding: 30px 0;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-links img {
    height: 36px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 0;
}
.address {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    margin: 0;
}

.address {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
    .social-links, .copyright {
        text-align: center;
    }
}