:root {
    --primary-color: #2e7d32;
    --primary-light: #4caf50;
    --primary-dark: #1b5e20;
    --accent-color: #66bb6a;
}

body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    color: #2c3e50;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 2rem;
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
}

.about-section {
    padding: 4rem 0;
    background: white;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
}

/* Language Switcher Styles */
.language-switcher-container {
    margin-left: 1rem;
    position: relative;
}

.btn-language-switcher {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 0.8rem; /* Adjusted padding */
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Space between icon and text */
}

.btn-language-switcher:hover,
.btn-language-switcher:focus {
    background-color: var(--primary-dark);
    color: white;
    outline: none;
    box-shadow: none;
}

.btn-language-switcher .bi-translate {
    font-size: 1.1rem; /* Icon size */
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px); /* Position below button with a small gap */
    right: 0;
    background: white;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    min-width: 120px; /* Wider dropdown */
    z-index: 1050; /* Ensure it's above other content */
    display: none; /* Hidden by default */
    padding: 0.5rem 0; /* Padding for the dropdown itself */
}

.language-switcher-container.open .language-dropdown-menu {
    display: block;
}

.language-dropdown-menu .language-option {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-dropdown-menu .language-option:hover {
    background-color: #f8f9fa; /* Light hover for options */
    color: var(--primary-dark);
}

.language-dropdown-menu .language-option.active {
    background-color: var(--primary-light);
    color: white;
    font-weight: 500;
}
/* End Language Switcher Styles */

.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-info .contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.contact-info .contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
    color: var(--primary-dark);
}

.gallery-section {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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;
}

.gallery-item-content {
    padding: 1.5rem;
    background: white;
}

.gallery-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.text-primary {
    color: var(--primary-color) !important;
}
/* Special Menu Section */
.special-menu-section {
    background-color: #f8f9fa; /* Light background for contrast */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.special-menu-section .owl-carousel .item .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%; /* Ensure cards in a row have same height */
}

.special-menu-section .owl-carousel .item .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.special-menu-section .owl-carousel .item .card-img-top {
    height: 200px;
    object-fit: cover;
}
.special-menu-section .owl-carousel .item .card-img-top-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 3rem;
}

.special-menu-section .owl-carousel .item .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.special-menu-section .owl-carousel .item .card-title {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem; /* Slightly larger title */
    min-height: 44px; /* Adjust based on typical title length */
}

.special-menu-section .owl-carousel .item .card-text.small {
    font-size: 0.875rem;
    color: #6c757d;
    flex-grow: 1; /* Allows description to take available space */
    margin-bottom: 1rem; /* Space before price */
}

.special-menu-section .owl-carousel .item .card-text.fw-bold {
    color: var(--secondary-color, var(--primary-dark)); /* Fallback for secondary color */
    font-size: 1.1rem;
    margin-top: auto; /* Pushes price to the bottom */
}

.special-menu-section .owl-nav button.owl-prev,
.special-menu-section .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateY(-20px); /* Adjust vertical position of nav buttons */
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    width: 45px; /* Slightly larger nav buttons */
    height: 45px;
    font-size: 1.8rem !important; /* Larger icon */
    line-height: 1 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 10;
}
.special-menu-section .owl-nav button.owl-prev:hover,
.special-menu-section .owl-nav button.owl-next:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.special-menu-section .owl-nav button.owl-prev {
    left: -25px; /* Adjust position */
}

.special-menu-section .owl-nav button.owl-next {
    right: -25px; /* Adjust position */
}

.special-menu-section .owl-dots {
    margin-top: 25px; /* More space for dots */
    text-align: center;
}

.special-menu-section .owl-dots .owl-dot span {
    background: #ccc !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important; /* More spacing between dots */
    border-radius: 50% !important;
    transition: background-color 0.3s ease;
}

.special-menu-section .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 0.3em 0.6em;
    border-radius: 0.25rem;
    z-index: 5; /* Ensure badge is above image */
}

/* Responsive adjustments for carousel navigation */
@media (max-width: 768px) {
    .special-menu-section .owl-nav button.owl-prev {
        left: -10px;
    }
    .special-menu-section .owl-nav button.owl-next {
        right: -10px;
    }
    .special-menu-section .owl-carousel .item .card-title {
        min-height: 40px;
    }
}

@media (max-width: 576px) {
    .special-menu-section .owl-nav {
        display: none; /* Hide nav arrows on very small screens, dots are enough */
    }
     .special-menu-section .owl-carousel .item .card-title {
        font-size: 1rem;
    }
    .special-menu-section .owl-carousel .item .card-text.small {
        font-size: 0.8rem;
    }
}