/* Global resets */
body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
  background-color: #e5d5be;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #5e4435;
}

a {
  color: #a0522d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Header */
.site-header {
  background-color:#f4e4cc;
  border-bottom: 1px solid #e4d6c0;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav li a {
  font-weight: 600;
  color: #5e4435;
}

.nav li a:hover {
  color: #a0522d;
}

/* Hero */
.hero {
  background: url('/images/hero-bread.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-textbox {
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  padding: 1.5rem 1.5rem;
  border-radius: 8px;
  color: #3a2d1a;
}
/* Button */
.btn-primary {
  display: inline-block;
  background-color: #a0522d;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #7a3c1e;
}

.about-intro {
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
}

.bread-gallery {
  margin: 4rem auto;
}

.bread-gallery h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: #fffdf7;
  border: 1px solid #e4d6c0;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.gallery-item h4 {
  font-family: 'Playfair Display', serif;
  margin: 0.5rem 0;
  color: #5e4435;
}



/* Footer */
.site-footer {
  background-color:#f4e4cc;
  color: #5e4435;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #e4d6c0;
}
.logo-img {
  height: 60px;
  width: auto;
  vertical-align: middle;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

