@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family='Roboto':ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Roboto', sans-serif;
}
.font-rubik-dirt {
    font-family: cheddar-gothic-rough, "Rubik Dirt", sans-serif;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: uppercase;
}
/* ── WordPress block editor CSS custom property resets (mirrors wp-block-library) ── */
:root {
    --wp--preset--color--black: #000000;
    --wp--preset--color--white: #ffffff;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
}

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

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: #222;
    background: #fff;
}

/* ── TOP BAR ── */
.top-bar {
    background: #616161;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-weight: bold;
}
.top-bar-info {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    flex-direction: column;
    div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    div.location {
        gap: 24px;
    }
    div.hours {
        gap: 5px;
    }
}
.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-info svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }
.social-icons {
        display: flex;
        gap: 10px;
        justify-content: right;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.social-icons svg { width: 22px; height: 22px; fill: #fff; }

/* ── HEADER ── */
header {
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 20px;

    h1 {
        width: 100%;
        min-height: 416px;
    }
}
.logo-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background-image: url('header.jpg');
    min-height: 416px;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.logo-icon { width: 54px; }
.logo-text {
    font-family: cheddar-gothic-rough, sans-serif;
    font-size: 3rem;
    letter-spacing: 6px;
    color: #fff;
    line-height: 1;
}
.logo-sub {
    font-family: cheddar-gothic-rough, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: #ccc;
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
    align-items: center;
}

/* Slideshow */
.slideshow {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.slide.active { opacity: 1; }
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: #5a3a1a; }

/* Hero copy */
.meat-local-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.meat-local-title {
    font-family: cheddar-gothic-rough, sans-serif;
    font-size: 3.2rem;
    letter-spacing: 3px;
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.meat-local-title .meat { color: #8b1a1a; font-style: italic; }
.bull-icon { width: 50px; }
.meat-local-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #555;
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-copy p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}
.hero-copy p:first-of-type strong { color: #654a2b; }

/* ── MENUS BAND ── */
.menus-band {
    background-color: #7c6552;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 28px 20px;
    flex-wrap: wrap;
}
h2 {
    font-size: 3rem;
    letter-spacing: 6px;
    color: #fff;
}
.menu-btn {
    display: inline-block;
    padding: 12px 38px;
    border: 2.5px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: cheddar-gothic-rough, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}
.menu-btn:hover { background: #fff; color: #8b6e4a; }

/* ── FOOD GRID ── */
.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: #fff;
    border-top: 5px solid #fff;
    border-bottom: 15px solid #fff;
}
.food-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border: 5px solid #fff;
    box-sizing: border-box;
}

/* ── MORE STEIGS ── */
.more-steigs {
    background: #616161;
    padding: 50px 20px;
    border-bottom: 15px solid #fff;
}
.more-steigs h2 {
    text-align: center;
    margin-bottom: 14px;
}
.divider {
    width: 80%;
    margin: 0 auto 40px;
    border: none;
    border-top: 1.5px solid #aaa;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
h3 {
    font-size: 2rem;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}
.card img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/* ── FOOTER ── */
footer {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.footer-logo .logo-text { font-size: 2rem; }
.footer-logo .logo-sub { font-size: 0.7rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 24px 16px; }
    .food-grid { grid-template-columns: repeat(2, 1fr); }
    .food-grid img { height: 180px; }
    .cards { grid-template-columns: 1fr; max-width: 360px; }
    .t8op-bar-info { font-size: 0.75rem; gap: 14px; justify-content: center; }
    .social-icons { justify-content: center; }
    .top-bar-info div.location { gap: 10px; margin-top: 10px;}
    .logo-heading { min-height: 300px; }
    .menus-band { display: block; text-align: center; }
}
