@charset "utf-8";
 
body, html {
  margin: 0;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  color: #560604;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
 
*, *::before, *::after {
  box-sizing: border-box;
}
 
a:link    { color: #ea560d; text-decoration: none; transition: color 0.2s ease; }
a:visited { color: #000000; text-decoration: none; }
a:hover   { color: #560604; text-decoration: underline; }
a:active  { color: #560604; text-decoration: none; }
 
/* TOPBAR */
.topbar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
 
.topbar .left {
  flex: 1;
  min-height: 377px;
  background-color: #ea560d;
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
 
.topbar .main {
  flex: 1;
  min-height: 377px;
  background-color: #560604;
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
 
.topbar .right {
  flex: 1;
  min-height: 377px;
  background-color: #004e22;
  text-align: center;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
 
@media screen and (max-width: 1000px) {
  .topbar { flex-direction: column; }
  .topbar .left,
  .topbar .main,
  .topbar .right {
    width: 100%;
    min-height: 77px;
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }
}
 
/* LAYOUT */
.container3 {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.spacer-small  { height: 10px; }
.spacer-medium { height: 50px; }
.spacer-large  { height: 100px; }
 
.footer-spacer { height: 177px; }
 
@media screen and (max-width: 800px) {
  .footer-spacer { height: 160px; }
}
 
/* SECTION DIVIDER */
.section-divider {
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  display: block;
}
.section-divider .bar-orange { height: 17px; background-color: #ea560d; }
.section-divider .bar-dark   { height: 17px; background-color: #560604; }
.section-divider .bar-green  { height: 17px; background-color: #004e22; }
 
/* TEXT & TYPOGRAPHY */
.text {
  background-color: #fff;
  color: #560604;
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
}
 
.text p {
  font-size: 17px;
  color: #560604;
  text-align: justify;
  max-width: 600px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  line-height: 27px;
}
 
h1, h2, h3, h4, h5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
 
h1 {
  font-size: 55px;
  font-weight: 900;
  line-height: 70px;
  color: #ea560d;
  text-align: center;
  margin-top: 17px;
  padding: 0 15px;
}
 
h2 {
  font-size: 27px;
  font-weight: bolder;
  line-height: 33px;
  color: #560604;
  text-align: justify;
  max-width: 700px;
  margin-top: 57px;
  padding: 0 15px;
}
 
h3 {
  font-size: 31px;
  line-height: 40px;
  font-weight: bolder;
  color: #ea560d;
  text-align: center;
  margin-top: 57px;
  padding: 0 17%;
}
 
h5 {
  font-size: 27px;
  font-weight: 900;
  line-height: 32px;
  color: #560604;
  text-align: justify;
  margin-top: 17px;
  padding: 0 4%;
}
 
@media screen and (max-width: 800px) {
  .text { margin: 0 10px; }
  .text p { font-size: 15px; line-height: 18px; }
  h1 { font-size: 44px; line-height: 50px; padding: 0 7%; }
  h2 { font-size: 21px; line-height: 27px; }
  h3 { font-size: 21px; line-height: 27px; }
  h5 { font-size: 33px; line-height: 23px; }
}
 
/* BUSINESS CARDS GRID */
.business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
 
.business-card {
  flex: 1 1 calc(50% - 24px);
  max-width: 400px;
  min-width: 260px;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
}

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

.business-card:hover .business-card-inner {
  box-shadow: 0 6px 24px rgba(86, 6, 4, 0.15);
  transform: translateY(-3px);
}
 
.business-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}
 
.business-card .card-label {
  background-color: #ea560d;
  color: #f0f0f0;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 0 0 8px 8px;
}
 
@media (max-width: 700px) {
  .business-card { flex: 1 1 100%; max-width: 100%; }
}
 
/* BUTTON */
.button {
  background-color: #ea560d;
  border: none;
  color: #f0f0f0 !important;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  font-size: 21px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.button:hover { background-color: #560604; text-decoration: none !important; }
.button:active { background-color: #560604; }
 
/* FOOTER */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 107px;
  background-color: #f0f0f0;
  color: #560604;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}
 
.footer a:link    { color: #560604; text-decoration: none; }
.footer a:visited { text-decoration: none; color: #000000; }
.footer a:hover   { text-decoration: underline; color: #ea560d; }
.footer a:active  { text-decoration: none; color: #560604; }
 
@media screen and (max-width: 800px) {
  .footer { font-size: 12px; line-height: 18px; padding-bottom: 10px; }
}
 
/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30%;
  max-width: 420px;
  min-width: 280px;
  background: #004e22;
  color: #f0f0f0;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
  font-family: Avenir, Helvetica, Arial, sans-serif;
}
 
.cookie-text {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #f0f0f0;
}
 
#cookie-banner a { color: #f0f0f0; text-decoration: underline; }
#cookie-banner a:hover { color: #ea560d; }
 
.cookie-actions { display: flex; gap: 10px; }
 
#cookie-banner .btn {
  flex: 1;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}
 
#cookie-banner .accept { background-color: #560604; color: #f0f0f0; }
#cookie-banner .accept:hover { background-color: #ea560d; }
#cookie-banner .decline { background-color: #f0f0f0; color: #560604; }
#cookie-banner .decline:hover { background-color: #ea560d; color: #f0f0f0; }
 
@media (max-width: 800px) {
  #cookie-banner {
    left: 10px; right: 10px; bottom: auto; top: 107px;
    width: calc(100% - 20px); max-width: 100%;
  }
  .cookie-actions { flex-direction: column; }
}

