/*Typography effects*/
h1 				{text-shadow: 0 2px 0 #fff;
}
h2				{text-shadow: 0 1px 0 #fff;
}
h3				{text-shadow: 0 1px 0 #ffffff;
}		
h4				{text-shadow: 1px -1px 0 #FF9933;
}
h5				{text-shadow: 1px -1px 0 #a006d4;
}

.dropcap {
text-shadow: 0 1px 0 #000;
}

:root {
  --coffee: #7c3c16;
  --coffee-dark: #4b2914;
  --sand: #fdf7f2;
  --cream: #fff8f0;
  --shadow-color: rgba(35, 21, 11, 0.25);
  --golden: #edb959;
}

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

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  background: var(--sand);
  color: #2a170d;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Merienda One', cursive;
  color: #2a170d;
}

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

a:hover {
  text-decoration: underline;
}

.navbar-coffee {
  background: linear-gradient(135deg, #4b2914, #a1431f);
}

.navbar-coffee .navbar-brand {
  letter-spacing: 0.2rem;
  font-weight: 600;
}

.navbar-coffee .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-coffee .nav-link.active, .navbar-coffee .nav-link:hover {
  color: #fff;
}

.hero {
  background: linear-gradient(145deg, #37150c, #873716);
}

.hero .hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(10, 0, 0, 0.45);
  padding: 1.5rem;
}

.hero-card ul {
  padding-left: 0;
  margin-bottom: 0;
}

.hero-card li {
  padding: 0.15rem 0;
  list-style: none;
}

.eyebrow {
  letter-spacing: 0.3rem;
  font-size: 0.85rem;
}

.warm-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 15px 35px var(--shadow-color);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-circle {
  width: 3.2rem;
  height: 3.2rem;
  background: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--coffee);
  margin-bottom: 0.75rem;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.hours-table th, .hours-table td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-top: none;
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(30, 17, 10, 0.08);
  box-shadow: 0 10px 30px var(--shadow-color);
  padding: 1.5rem;
  height: 100%;
}

.btn-coffee {
  background: var(--coffee);
  color: #fff;
  border: none;
}

.btn-coffee:hover {
  background: var(--coffee-dark);
  color: #fff;
}

.map-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.map-card iframe {
  border: 0;
  border-radius: 1rem;
}

.page-hero {
  background: linear-gradient(120deg, #2c1206, #7c3413);
  text-align: center;
}

.page-hero-menu {
  background-image: linear-gradient(120deg, #341a09, #8c4319);
}

.page-hero-specials {
  background-image: linear-gradient(120deg, #29170d, #9c4b1f);
}

.page-hero-contact {
  background-image: linear-gradient(120deg, #1f1208, #a1451d);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.page-hero p {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

.menu-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-list span:last-child {
  font-weight: 600;
}

.order-form {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 18px 35px rgba(33, 17, 7, 0.2);
}

.order-form .form-label {
  font-weight: 600;
}

.dropcap {
  float: left;
  font-size: 3rem;
  line-height: 1;
  margin-right: 0.3rem;
  font-weight: 700;
  color: var(--coffee);
}

.footer {
  background: #1d1209;
  color: #eadcc9;
}

.footer a {
  color: #f8e3c9;
}

.footer a:hover {
  color: #fff;
}

.text-gold {
  color: var(--golden) !important;
}

.border-coffee {
  border-color: var(--coffee) !important;
}

.specials-table th, .specials-table td {
  border-top: none;
}

@media (max-width: 767px) {
  .hero {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero .hero-card {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .navbar-coffee .navbar-brand {
    font-size: 1rem;
  }
}

