:root {
    /* Color Palette - Warm, Gastronomic, Sophisticated */
    --primary-color: #8B4513;
    /* SaddleBrown - Warm earthy tone */
    --secondary-color: #D2691E;
    /* Chocolate/Orange tone */
    --accent-color: #DAA520;
    /* GoldenRod - Premium feel */
    --bg-color: #FDFBF7;
    /* Off-white/Cream background */
    --card-bg: #FFFFFF;
    --text-color: #3E2723;
    /* Dark Brown for text */
    --text-light: #6D4C41;
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f0f0f0;
    /* Outer background */
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Mobile Container - Simulates the mobile screen */
.mobile-container {
    width: 100%;
    max-width: 480px;
    /* Mobile width constraint */
    background-color: var(--bg-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    position: relative;
    padding-bottom: 70px;
    /* Space for fixed footer */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* HEADER */
.header-section {
    padding: 40px 24px;
    text-align: center;
    background: linear-gradient(to bottom, #fff5e6, var(--bg-color));
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

.header-section h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.header-section h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 0 10px;
}

.phone-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* CARDS SECTION */
.cards-section {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.05);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.card-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    padding-right: 8px;
}

/* HIGHLIGHT SECTION */
.highlight-section {
    height: 600px;
    background-color: #333;
    position: relative;
    margin: 20px 0;
    background-image: url('assets/highlight-google-new.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--text-color);
}

.highlight-overlay h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.cta-final {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 40px 24px;
    background-color: #fff;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.reviews-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    border-left: 4px solid var(--accent-color);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.review-date {
    font-weight: 400;
    color: #999;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color);
}

/* FOOTER */
.footer {
    padding: 40px 24px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

.footer p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Card Images */
#img-menu {
    background-image: url('assets/menu.png');
}

#img-delivery {
    background-image: url('assets/delivery.png');
}

#img-reservation {
    background-image: url('assets/reservation.png');
}

#img-birthday {
    background-image: url('assets/birthday.png');
}

#img-corporate {
    background-image: url('assets/corporate.png');
}

#img-location {
    background-image: url('assets/location.png');
}

/* FIXED BOTTOM BAR */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 60px;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    gap: 10px;
    transition: opacity 0.3s;
}

.fixed-bottom-bar a:hover {
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #008000;
    /* Green similar to image */
}

.btn-phone {
    background-color: #FF0000;
    /* Red similar to image */
}

.fixed-bottom-bar i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.btn-text span {
    font-size: 0.75rem;
    font-weight: 400;
}

.btn-text strong {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (min-width: 481px) {

    /* If viewed on desktop, center the mobile container */
    body {
        background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%239C92AC" fill-opacity="0.1" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    }
}