@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

:root {
    --color-bg: #eceae1;
    /* Bege claro */
    --color-primary: #0b3b24;
    /* Verde escuro estilo Starbucks */
    --color-accent: #c5a059;
    /* Dourado */
    --color-text: #2c2c2c;
    --color-text-light: #595959;
    --color-card-bg: #ffffff;

    --shadow-sm: 0 4px 6px -1px rgba(11, 59, 36, 0.05), 0 2px 4px -1px rgba(11, 59, 36, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 59, 36, 0.08), 0 4px 6px -2px rgba(11, 59, 36, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 59, 36, 0.1), 0 10px 10px -5px rgba(11, 59, 36, 0.04);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile first wrapper */
    background: var(--color-bg);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
    /* Soft shadow on desktop */
    display: flex;
    flex-direction: column;
}

/* Header & Profile */
header {
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    box-shadow: var(--shadow-md);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-bg);
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

h2.subtitle {
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.address-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Base Content Layout */
main {
    padding: 0 1.5rem 3rem;
    flex-grow: 1;
}

/* Link Buttons */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background-color: var(--color-card-bg);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 59, 36, 0.05);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.link-btn:hover::before {
    transform: translateX(0);
}

.link-btn:hover,
.link-btn:active {
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.link-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

/* Special Button */
.link-btn.primary {
    background-color: var(--color-primary);
    color: #fff;
}

.link-btn.primary::before {
    background-color: var(--color-accent);
}

/* Page Header (Inner pages) */
.page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-card-bg);
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.page-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    font-size: 1.75rem;
    flex-grow: 1;
}

/* Menu (Cardápio) Category */
.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

/* Product Cards */
.product-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: var(--color-bg);
    padding: 0.5rem;
}

.product-info {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* Horários Card */
.schedule-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.schedule-item {
    margin-bottom: 1.5rem;
}

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

.schedule-day {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-time {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: 1.5rem auto;
    opacity: 0.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: auto;
    color: var(--color-text-light);
}

footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

footer p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-accent);
}

/* Map button utility */
.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}