/* ----------------------------------------------
  Global Reset & Base Styles
---------------------------------------------- */
html {

}
a:hover {
  text-decoration: none;
}
html, body {
  margin: 0;
  padding: 0;
  line-height: 1.57;
  overflow-x: hidden;
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

/* Load Block font */
@font-face {
  font-family: 'Block';
  src: url('/css/fonts/Block-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ----------------------------------------------
  Header & Navigation
---------------------------------------------- */
.header__logo,
.breadcrumbs {
  display: none !important;
}

.contr,
.header__inner,
.cust-help .header {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.custom-header {
  position: relative;
  background-image: url('/img/Flame-BG.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: black;
  text-align: center;
  padding: 32px 16px 24px;
  margin: 0;
}

.custom-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.custom-header img {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  margin: -20px;
}

.custom-header img:hover {
  transform: scale(1.05);
}

.custom-navbar {
  background-color: #b22222;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 16px;
  flex-wrap: wrap;
  font-family: 'Block', sans-serif;
  box-sizing: border-box;
  margin: 0;
}

.custom-navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  background: #ff0111;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-navbar a:hover {
  color: #ffd700;
  transform: scale(1.05);
}

/* ----------------------------------------------
  Text Section
---------------------------------------------- */
.text-section {
  max-width: 800px;
  margin: 32px auto;
  font-family: Arial, sans-serif;
}

.text-section h2 {
  text-align: center;
  font-family: 'Block', sans-serif;
  color: #b22222;
  margin-bottom: 24px;
  font-size: 40px; /* 2.5em */
}

.text-item {
  margin-bottom: 24px;
}

.text-question {
  font-weight: bold;
  font-size: 19px; /* 1.2rem */
  color: #333;
  margin-bottom: 5px;
}

.text-answer {
  color: #555;
  line-height: 25px;
}

/* ----------------------------------------------
  Customer Footer
---------------------------------------------- */
.customer-footer {
  background-color: #a30000;
  color: #fff;
  padding: 20px;
  font-size: 14px;
}

.customer-footer__content {
  max-width: 1200px;
  margin: 0 auto;
}

.customer-footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.customer-footer__logo img {
  max-height: 100px;
}

.customer-footer__textgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Flame Sans', sans-serif;
}

.customer-footer__nav {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.customer-footer__nav a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.customer-footer__nav a:hover {
  text-decoration: underline;
}

.customer-footer__text {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  font-family: 'Arial', sans-serif;
}

.trading-hours {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 10px;
  font-family: Arial, sans-serif;
}

.trading-day {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 16px;
  color: #333;
}

.trading-day span:first-child {
  font-weight: bold;
}

/* List Style */
.inside {
  list-style-type: square;
  padding: 0;
}

.contact-photo {
	max-width: 800px;
	margin:auto;
	display: block;
}

/* ----------------------------------------------
  Responsive Styles
---------------------------------------------- */
@media (max-width: 768px) {
  .custom-header {
    padding: 28px 12px 20px;
  }

  .custom-header img {
    max-width: 150px;
  }

  .custom-navbar {
    gap: 16px;
    padding: 8px 8px;
  }

  .custom-navbar a {
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 6px;
  }

  .faq-section {
    padding: 16px 12px;
  }

  .customer-footer__row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .customer-footer__logo img {
    display: none;
  }
  .text-section {
	padding-left: 16px;
	padding-right: 16px;
  }
  .contact-photo {
	max-width: 360px;
	width: 370px;
  }
} /* End of Media Bracket */