/* HayDay Cafe & Restaurant - Standalone Styles */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cabin:ital,wght@0,400;0,600;0,700;1,400&family=Oswald:wght@400;600;700&family=Tangerine:wght@700&display=swap');

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

body {
  font-family: 'Cabin', Arial, sans-serif;
  background-color: #111110;
  color: #cfcfcf;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.font-oswald { font-family: 'Oswald', sans-serif; }
.font-tangerine { font-family: 'Tangerine', cursive; }
.font-abril { font-family: 'Abril Fatface', serif; }
.text-gold { color: #cfa670; }
.bg-gold { background-color: #cfa670; }
.border-gold { border-color: #cfa670; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.top-bar {
  background: #0b0b0a;
  border-bottom: 1px solid #222220;
  padding: 8px 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-header {
  background: #111110;
  border-bottom: 1px solid #252523;
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #cfa670;
}

.btn-gold {
  background: #cfa670;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.btn-gold:hover {
  background: #b88f5a;
}

/* Section styling */
.section {
  padding: 70px 0;
}

.section-title-sub {
  font-family: 'Tangerine', cursive;
  font-size: 48px;
  color: #cfa670;
  line-height: 1;
  text-align: center;
}

.section-title-main {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #191918;
  border: 1px solid #282825;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #cfa670;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
}

/* Menu list item */
.menu-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #2a2a26;
}

.menu-title {
  font-weight: 600;
  color: #fff;
}

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted #444;
  margin: 0 12px;
  height: 1px;
}

.menu-price {
  color: #cfa670;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
}

/* Footer */
footer {
  background: #0b0b0a;
  border-top: 1px solid #222220;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1a1a18;
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}