/*
Theme Name: Bakkal
Theme URI: https://amu.rosentv.no
Author: Bakkal Rykkin
Description: Bakkal Restaurant Theme — La cucina della nonna
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bakkal
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --gold: #f0c040;
  --gold-dark: #c8960a;
  --dark: #1a1a1a;
  --dark2: #111;
  --cream: #faf8f2;
  --gray: #777;
  --border: #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.bk-nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.bk-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 700;
  text-decoration: none;
}
.bk-nav-links { display: flex; gap: 36px; list-style: none; }
.bk-nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.bk-nav-links a:hover { color: var(--gold); }

/* ===== HERO ===== */
.bk-hero {
  background: var(--dark);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.bk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(240,192,64,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.bk-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
}
.bk-hero-title span { color: var(--gold); }
.bk-hero-sub {
  font-size: 13px;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 36px;
}
.bk-hero-btn {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  position: relative;
}
.bk-hero-btn:hover { background: var(--gold); color: var(--dark); }

/* ===== SECTIONS ===== */
.bk-section { padding: 72px 60px; }
.bk-section-bg { padding: 72px 60px; background: var(--cream); }

.bk-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.bk-section-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 44px;
}

/* ===== MENU CARDS ===== */
.bk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.bk-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
.bk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.bk-card-img {
  width: 50%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: var(--cream);
}

.bk-card-body { padding: 20px; }
.bk-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.bk-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.bk-card-price { font-size: 15px; font-weight: 700; color: var(--gold-dark); }

/* ===== ABOUT ===== */
.bk-about-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.bk-about-inner p { font-size: 17px; color: #555; line-height: 1.9; }

/* ===== CONTACT ===== */
.bk-contact { background: var(--dark); padding: 72px 60px; text-align: center; }
.bk-contact .bk-section-title { color: #fff; }
.bk-contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.bk-contact-link {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.bk-contact-link:hover { background: var(--gold); color: var(--dark); }

/* ===== FOOTER ===== */
.bk-footer {
  background: var(--dark2);
  text-align: center;
  padding: 22px;
  font-size: 12px;
  color: #555;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bk-nav { padding: 16px 20px; }
  .bk-nav-links { gap: 18px; }
  .bk-hero-title { font-size: 34px; }
  .bk-section, .bk-section-bg, .bk-contact { padding: 48px 20px; }
}
