/**
 * Hotel & Restaurant Biedermeier - Frontend Styles
 */

/* Variables */
:root {
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A5522A;
    --secondary: #D4AF37;
    --secondary-light: #E5C65A;
    --accent: #F5F5DC;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #FFFAF0;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.8);
}

.top-bar-contact a:hover {
    color: var(--secondary);
}

.top-bar-contact i {
    margin-right: 6px;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.top-bar-social a:hover {
    color: var(--secondary);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
}

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

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

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

.nav-list a.active {
    color: var(--primary);
}

.header-cta {
    display: flex;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background: var(--secondary-light);
    color: var(--text);
}

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

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

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero.small {
    padding: 50px 0;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-text {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-header {
    margin-bottom: 50px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-light);
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.about-feature i {
    font-size: 1.25rem;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
}

.about-image-2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    border: 5px solid var(--white);
}

/* Features Section */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* Rooms Section */
.rooms-section {
    background: var(--gray-100);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.room-price span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    margin-bottom: 10px;
}

.room-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.room-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.room-info i {
    margin-right: 5px;
    color: var(--primary);
}

/* Restaurant Teaser */
.restaurant-teaser {
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.restaurant-teaser-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920') center/cover no-repeat;
}

.restaurant-teaser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.restaurant-teaser-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.restaurant-teaser-content .section-title {
    color: var(--white);
}

.restaurant-teaser-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.restaurant-teaser-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Events Section */
.events-section {
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.event-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.event-card h3 {
    margin-bottom: 15px;
}

.event-card p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

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

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 20px;
}

.hours-list {
    text-align: left;
    margin-bottom: 20px;
}

.hours-list h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.hours-list p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-hours {
    list-style: none;
}

.footer-hours li {
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Room Detail Page */
.rooms-page {
    padding: 80px 0;
}

.room-detail {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-200);
}

.room-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.room-detail-grid.reverse {
    direction: rtl;
}

.room-detail-grid.reverse > * {
    direction: ltr;
}

.room-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.room-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.room-detail-content h2 {
    margin-bottom: 10px;
}

.room-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.room-detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.room-detail-text {
    color: var(--text-light);
    margin-bottom: 25px;
}

.room-detail-info {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.room-detail-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.room-detail-info-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.room-amenities {
    margin-bottom: 30px;
}

.room-amenities h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.room-amenities ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.room-amenities i {
    color: var(--success);
}

/* Restaurant Page */
.restaurant-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.restaurant-intro {
    padding: 100px 0;
}

.restaurant-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-intro-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.restaurant-hours {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.restaurant-hours h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.restaurant-hours ul {
    list-style: none;
}

.restaurant-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.restaurant-hours li span {
    font-weight: 600;
}

.restaurant-buttons {
    display: flex;
    gap: 15px;
}

.restaurant-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.restaurant-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.restaurant-features {
    background: var(--gray-100);
    padding: 80px 0;
}

.restaurant-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.restaurant-feature {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.restaurant-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.restaurant-feature h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.restaurant-feature p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.restaurant-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.restaurant-contact {
    background: var(--gray-100);
    padding: 80px 0;
}

.restaurant-contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.restaurant-contact-card h3 {
    margin-bottom: 15px;
}

.restaurant-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Menu Page */
.menu-section {
    padding: 80px 0;
}

.menu-downloads {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-content {
    max-width: 800px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.menu-category-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.menu-items {
    border-top: 1px solid var(--gray-200);
}

.menu-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-item-name {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50%;
}

.menu-badge.vegetarian {
    background: #d4edda;
    color: #155724;
}

.menu-badge.vegan {
    background: #d1ecf1;
    color: #0c5460;
}

.menu-badge.featured {
    background: #fff3cd;
    color: #856404;
}

.menu-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 5px;
}

.menu-item-allergens {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.allergen-legend {
    margin-top: 50px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.allergen-legend h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.allergen-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.allergen-list span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.allergen-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badge-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-hours-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-hours-card h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.hours-section {
    margin-bottom: 20px;
}

.hours-section:last-child {
    margin-bottom: 0;
}

.hours-section strong {
    display: block;
    margin-bottom: 5px;
}

.hours-section p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.contact-form-section h3 {
    margin-bottom: 25px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-section {
    padding: 50px 0 0;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    background: var(--gray-200);
}

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

.directions-section {
    padding: 80px 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.direction-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.direction-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.direction-card h4 {
    margin-bottom: 15px;
}

.direction-card p {
    color: var(--text-light);
    margin: 0;
}

/* Booking Page */
.booking-section {
    padding: 80px 0;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.booking-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}

.booking-tab:hover,
.booking-tab.active {
    background: var(--primary);
    color: var(--white);
}

.booking-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.booking-form hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid var(--gray-200);
}

.booking-info {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--radius-lg);
    height: fit-content;
}

.booking-info h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.booking-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.booking-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.booking-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.booking-success h2 {
    margin-bottom: 15px;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.booking-success .btn {
    margin-top: 20px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-light);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 5px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid,
    .events-grid,
    .contact-grid,
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .room-detail-grid,
    .restaurant-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 400px;
    }

    .room-detail-grid.reverse {
        direction: ltr;
    }

    .restaurant-features-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .top-bar-contact {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .nav-list a {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

    .features-grid,
    .events-grid,
    .contact-grid,
    .directions-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-buttons,
    .cta-buttons,
    .restaurant-teaser-buttons,
    .restaurant-buttons {
        flex-direction: column;
    }

    .about-images {
        height: 350px;
    }

    .about-image-1 {
        width: 70%;
    }

    .about-image-2 {
        width: 60%;
    }

    .room-detail-image img {
        height: 300px;
    }

    .room-amenities ul {
        grid-template-columns: 1fr;
    }

    .restaurant-features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-downloads {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-tabs {
        flex-direction: column;
    }

    .badge-legend {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-hero {
        padding: 50px 0;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .contact-form,
    .booking-form {
        padding: 25px;
    }
}

/* ========================================
   Chat Widget
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
}

.chat-toggle .chat-toggle-close {
    display: none;
}

.chat-widget.active .chat-toggle .fa-comments {
    display: none;
}

.chat-widget.active .chat-toggle .chat-toggle-close {
    display: block;
}

.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    max-height: 500px;
}

.chat-widget.active .chat-window {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-header-info i {
    font-size: 20px;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    opacity: 0.8;
    transition: var(--transition);
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 250px;
    max-height: 350px;
    background: var(--gray-100);
}

.chat-message {
    display: flex;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.assistant {
    align-self: flex-start;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.user .chat-bubble {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .chat-bubble {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.chat-form {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.chat-input {
    flex: 1;
    border: 1px solid var(--gray-300);
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.chat-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.chat-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-send:hover {
    background: var(--primary-dark);
}

.chat-send:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Chat Widget Responsive */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .chat-window {
        width: calc(100vw - 30px);
        bottom: 70px;
        right: -15px;
    }
}

/* Menu Styles */
.menu-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.menu-tab-btn i {
    margin-right: 8px;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
}

.category-header i {
    font-size: 32px;
    color: var(--secondary);
    margin-top: 5px;
    flex-shrink: 0;
}

.menu-category-title {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 8px;
}

.menu-category-desc {
    color: var(--text-light);
    font-size: 14px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
    background: var(--white);
}

.menu-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.menu-item.restaurant-only {
    opacity: 0.8;
    background: linear-gradient(135deg, var(--white) 0%, rgba(210, 180, 140, 0.05) 100%);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-item-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0;
    line-height: 1.5;
}

.menu-item-allergens {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.menu-item-allergens i {
    margin-right: 4px;
}

.menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-badge.vegetarian {
    background: #90EE90;
    color: #2d5a2d;
}

.menu-badge.vegan {
    background: #98FB98;
    color: #1a3a1a;
}

.menu-badge.featured {
    background: var(--secondary);
    color: var(--primary-dark);
}

.menu-badge.restaurant-only-badge {
    background: #FFE4B5;
    color: #8B4513;
}

.menu-item-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.takeaway-btn {
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-item-header {
        flex-direction: column;
    }
    
    .menu-item-price {
        align-self: flex-start;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Takeaway Styles */
.takeaway-section {
    padding: 40px 0;
}

.takeaway-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.menu-area {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.menu-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
}

.menu-header h2 {
    color: var(--primary-dark);
    font-size: 24px;
    margin: 0;
}

.takeaway-menu .menu-category {
    margin-bottom: 40px;
}

.takeaway-item .menu-item-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 2px solid var(--secondary);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
}

.cart-header h3 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 18px;
}

.btn-clear-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.btn-clear-cart:hover {
    color: var(--danger);
}

.empty-cart {
    text-align: center;
    padding: 30px 0;
    color: var(--text-muted);
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.cart-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 5px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 6px;
    margin-bottom: 10px;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: var(--primary-dark);
}

.cart-item-qty {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.cart-item-price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 13px;
    white-space: nowrap;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.btn-remove:hover {
    color: var(--primary-dark);
}

.cart-summary {
    background: var(--gray-100);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}

.delivery-options {
    background: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
}

.delivery-option-item {
    margin-bottom: 8px;
}

.delivery-option-item:last-child {
    margin-bottom: 0;
}

.delivery-option-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.delivery-option-item label:hover {
    background: var(--gray-100);
}

.delivery-option-item input[type="radio"] {
    cursor: pointer;
    margin: 0;
}

.delivery-option-item i {
    color: var(--primary);
    font-size: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    border-top: 2px solid var(--gray-300);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color: var(--primary-dark);
}

.summary-row label {
    cursor: pointer;
    flex: 1;
}

.takeaway-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 12px 16px;
    font-size: 14px;
}

.cart-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.cart-note i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .takeaway-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .menu-area {
        padding: 20px;
    }

    .cart-sidebar {
        padding: 20px;
    }

    .category-header {
        gap: 10px;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}
