@font-face {
    font-family: 'Gotham-Black';
    src: url('../fonts/Gotham-Black.eot#iefix') format('embedded-opentype'),
         url('../fonts/Gotham-Black.otf') format('opentype'),
         url('../fonts/Gotham-Black.woff') format('woff'),
         url('../fonts/Gotham-Black.ttf') format('truetype'),
         url('../fonts/Gotham-Black.svg#Gotham-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/GothamBook.eot#iefix') format('embedded-opentype'),
         url('../fonts/GothamBook.woff') format('woff'),
         url('../fonts/GothamBook.ttf') format('truetype'),
         url('../fonts/GothamBook.svg#GothamBook') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* Homepage hero: exact archived background image. */
body.home .home-bg {
  background-image: url(../images/home2.jpg);
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
body.home #section { padding: 0; }

/* WordPress inserts huge profile graphics (>1000px). Constrain them so
   the layout stays balanced. */
.main-content img.graphic,
.main-content img.alignnone,
.main-content img[class*="wp-image"] {
  display: block;
  max-width: 150px;
  height: auto;
  margin: 1em 0;
}

/* Make tables clean */
.main-content table { border-collapse: collapse; }
/*.main-content table th { background: #f6f6f6; }*/

/* Form polish */
form input, form textarea, form select { font-family: inherit; }
.wpcf7-form .ajax-loader, .wpcf7-spinner { display: none !important; }
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
  background: #063151; color: #fff; border: 0; padding: 10px 22px;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  border-radius: 4px;
}
.wpcf7-form input[type="submit"]:hover { background: #003150; }

/* Products grid: give the dark category overlay enough opacity */
.category-img-col .overlay { background: rgba(0,0,0,.35); opacity: 1 !important; }
.category-img-col h1 {
  left: 30px; top: 30px; right: 30px;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

.category-img-col:hover .menu-category.row {
    display: block !important;
    transition: .3s;
}

/* Sidebar widget title */
.sidebar h4 { margin-top: 1.5em; }
.sidebar .widget:first-child h4 { margin-top: 0; }

/* Footer columns side-by-side from sm up */
@media (min-width: 768px) {
  .menu-bottom > li {
    width: 19%; float: left; padding-right: 1%; vertical-align: top;
  }
}
.menu-bottom { color: #545454; }


html, body, p, div, span, li, ul, ol, td, th, input, textarea, button, select, label {
  font-family: 'Gotham-Book' !important;
}
h1, h2, h3, h4, h5, h6, .slogan h1, b, strong {
  font-family: 'Gotham-Black' !important;
  font-weight: 900;
  letter-spacing: 1px;
}

/* === Footer: readable white text === */
footer, footer p, footer li, footer ul {
  color: #ffffff !important;
}
footer a,
footer a:link,
footer a:visited,
footer a:active,
footer a:focus {
  color: #545454 !important;
}
footer a:hover {
  color: #545454 !important;
  border-bottom: 1px solid #545454 !important;
}
footer .menu-bottom > li > a { font-weight: 700; }
.menu-bottom { color: #ffffff !important; }

/* === Mobile burger menu === */
#menu_mobile { display: none; }
#menu_mobile.is-open { display: block; background:#fff; }
#menu_mobile .menu { list-style:none; padding:15px; margin:0; }
#menu_mobile .menu li { padding:10px 0; border-bottom:1px solid #eee; }
#menu_mobile .menu li a { color:#1a1a1a; text-decoration:none; font-weight:500; display:block; }

/* Ensure burger is visible on all mobile/tablet sizes */
@media (max-width: 991px) {
  .navbar-toggle { display: block !important; }
}

/* Make burger button visible & styled on mobile */
@media (max-width: 991px) {
  .navbar-toggle {
    display: block !important;
    float: right;
    background: transparent;
    border: 1px solid #063151;
    border-radius: 4px;
    padding: 9px 10px;
    margin-top: 22px;
    margin-right: 15px;
    cursor: pointer;
  }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #063151;
    border-radius: 1px;
    margin: 4px 0;
  }
}

/* ============================================
   Cookie Consent Banner (homepage only)
   ============================================ */
#cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #e6e6e6;
  border-top: 3px solid #063151;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(6, 49, 81, 0.18);
  padding: 18px 22px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
#cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#cookie-consent .cc-text {
  flex: 1 1 320px;
  margin: 0;
  color: #333;
}
#cookie-consent .cc-text strong {
  color: #063151;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
#cookie-consent .cc-link {
  color: #063151;
  text-decoration: underline;
  font-weight: 500;
}
#cookie-consent .cc-link:hover,
#cookie-consent .cc-link:focus { color: #003150; }
#cookie-consent .cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-consent .cc-btn {
  background: #063151;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease;
}
#cookie-consent .cc-btn:hover,
#cookie-consent .cc-btn:focus {
  background: #003150;
  outline: none;
}
#cookie-consent .cc-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(6, 49, 81, .25);
}
#cookie-consent .cc-btn-secondary {
  background: transparent;
  color: #063151;
  border: 1px solid #063151;
}
#cookie-consent .cc-btn-secondary:hover,
#cookie-consent .cc-btn-secondary:focus {
  background: #063151;
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
    font-size: 13px;
  }
  #cookie-consent .cc-actions { width: 100%; }
  #cookie-consent .cc-btn { flex: 1; }
}
