:root {
    --primary-color: #8C6B4A;
    --primary-hover: #73573c;
    --text-dark: #2C1F18;
    --text-muted: #7a7068;
    --bg-white: #ffffff;
    --bg-beige: #F4E8D8;
    --bg-beige-darker: #E5D5C1;
    --bg-footer: #F4E8D8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-beige);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

/* Typography Utilities */
.section-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

/* Divider with icon */
.divider-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}
.divider-with-icon::before,
.divider-with-icon::after {
    content: '';
    height: 1px;
    width: 40px;
    background: #d4c4b7;
    margin: 0 15px;
}
.divider-icon {
    color: var(--primary-color);
}

/* Custom Navbar */
.custom-navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.custom-navbar.navbar-scrolled {
    background: var(--bg-beige) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    gap: 8px;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}
.navbar-brand .brand-subtext {
    font-size: 0.65rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    display: block;
    font-weight: 400;
    margin-top: -5px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--primary-color);
    transition: background 0.3s ease;
}

.weather-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.weather-icon-nav {
    width: 32px;
    height: 32px;
}
.weather-temp-nav {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s ease;
}
.weather-loc-nav {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    transition: color 0.3s ease;
}

.lang-selector {
    background: #3e2723;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 15px;
    transition: background 0.3s ease;
}

.lang-selector option {
    color: #333;
    background: #fff;
}

/* Transparent Navbar text colors */
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .navbar-brand,
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .nav-link,
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .weather-temp-nav {
    color: #ffffff;
}
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .brand-subtext,
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .weather-loc-nav {
    color: rgba(255, 255, 255, 0.8);
}
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .nav-link:hover,
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .nav-link.active {
    color: #ffffff;
}
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .nav-link.active::after {
    background: #ffffff;
}
.custom-navbar.transparent-on-top:not(.navbar-scrolled) .lang-selector {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.btn-google {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-google:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.btn-google img {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive, var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1;
}

.hero-title-sub {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.hero-title-sub::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #fff;
    border-bottom: 2px dotted #fff; /* A styled border */
}

.hero-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 450px;
    line-height: 1.6;
}

/* Floating Weather Card */
.weather-card-floating {
    background: #EFE4D6;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    color: #2C1F18;
    max-width: 320px;
    margin-left: auto;
}
.weather-main {
    justify-content: center;
}
.weather-stats {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
}
.weather-stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 12px 0;
}
.weather-stat-label {
    color: #4A3A2F;
}
.weather-stat-val {
    font-weight: 500;
    color: #2C1F18;
}
.weather-divider-dotted {
    height: 1px;
    border-top: 1px dashed rgba(0,0,0,0.15);
    margin: 0 5px;
}
.weather-divider-solid {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 0;
}
.weather-perfect {
    padding-top: 5px;
}

/* Info Cards Row */
.info-cards-row {
    margin-top: 40px;
    margin-bottom: 60px;
}
.info-card {
    background: #ddd7c4;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-card-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.info-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.info-card-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.star-rating {
    color: #f5b301;
}

/* Signature Dishes */
.dish-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}
.dish-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(140, 107, 74, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dish-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.dish-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dish-card:hover .dish-img-wrap img {
    transform: scale(1.05);
}
.dish-content {
    padding: 20px;
    position: relative;
}
.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}
.dish-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}
.dish-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}
.dish-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.dish-like {
    color: var(--text-muted);
    background: transparent;
    border: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.3s;
}
.dish-like:hover {
    color: var(--primary-color);
}

/* Story Section */
.story-section {
    background: var(--bg-beige-darker);
    border-radius: 24px;
    overflow: hidden;
    margin: 60px 0;
}
.story-img {
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    width: 100%;
}
.story-content {
    padding: 60px 40px;
}
.feature-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.feature-icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(140, 107, 74, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}
.feature-icon-text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Reviews */
.rev.dish-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Swiper Overrides */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background: var(--bg-white);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    top: 40% !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
.reviews-pagination {
    margin-top: 1.5rem !important;
}
.dishes-swiper {
    padding: 10px 10px 40px 10px !important; /* space for pagination and shadow */
}
.review-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.review-author {
    font-weight: 600;
    margin-bottom: 2px;
}
.review-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    background-color: var(--bg-footer);
    color: var(--text-dark);
    padding: 60px 0 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
}

.footer-map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 1.2rem;
}
.social-links a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}
.footer-contact i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .weather-card-floating {
        display: none;
    }
    .story-content {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .custom-navbar {
        padding: 0.8rem 0;
    }
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .custom-navbar.transparent-on-top:not(.navbar-scrolled) .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
    }
    .info-cards-row {
        margin-top: 20px;
    }
    .feature-icons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Page Header */
.page-header { background-color: #333; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 290px 0 100px; position: relative; text-align: center; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.55); }
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb { justify-content: center; margin-bottom: 0; }
.page-header .page-title { font-size: 4.5rem; font-weight: 700; margin-bottom: 15px; color: #ffffff; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.page-header .breadcrumb-item a:hover { color: #ffffff; }
.page-header .breadcrumb-item.active { color: #ffffff; font-weight: 500; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }

/* Section Padding */
.section-padding { padding: 100px 0; }
@media (max-width: 991px) { .section-padding { padding: 60px 0; } }
