/* ==========================================================================
   Template: TPL-014 - FreshBite Restaurant
   Theme: Bridge | Builder: WPBakery
   Generated: 2026-03-20
   ========================================================================== */

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
    --tpl-primary: #E07A5F;
    --tpl-secondary: #3D405B;
    --tpl-accent: #81B29A;
    --tpl-bg-light: #F4F1DE;
    --tpl-bg-dark: #2F2F2F;
    --tpl-text-dark: #3D405B;
    --tpl-text-light: #F4F1DE;
    --tpl-font-heading: 'Fjalla One', sans-serif;
    --tpl-font-body: 'Cantarell', sans-serif;
    --tpl-radius: 4px;
    --tpl-space-xs: 4px;
    --tpl-space-sm: 12px;
    --tpl-space-md: 28px;
    --tpl-space-lg: 56px;
    --tpl-space-xl: 100px;
    --tpl-space-xxl: 140px;
}

/* --- Typography --- */
body {
    font-family: var(--tpl-font-body);
    color: var(--tpl-text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tpl-font-heading);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 72px; }
h2 { font-size: 52px; }
h3 { font-size: 40px; }
h4 { font-size: 30px; }
h5 { font-size: 24px; }
h6 { font-size: 18px; }

/* --- Links & Buttons --- */
a {
    color: var(--tpl-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--tpl-secondary);
}

.btn,
button,
input[type="submit"],
.wp-block-button__link,
.wp-block-button__link {
    border-radius: var(--tpl-radius) !important;
    transition: all 0.3s ease;
}

.btn:hover,
.wp-block-button__link:hover,
.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* --- Cards & Containers --- */
.card,
.service-box,
.icon-box,
.wp-block-group,
.wp-block-group {
    border-radius: var(--tpl-radius);
}

/* --- Sections --- */
.section-padding {
    padding: var(--tpl-space-xxl) 0;
}

/* --- Focus States (Accessibility) --- */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--tpl-primary);
    outline-offset: 2px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--tpl-primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    h3 { font-size: 32px; }
}

/* --- Print --- */
@media print {
    nav, footer, .no-print { display: none !important; }
    body { font-size: 12pt; color: #000; }
}

/* --- Moderate Interactions --- */
.wp-block-group:hover,
.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
