/*
 Theme Name:   MFMS child theme
 Description:  MFMS child theme
 Author:       MFMS
 Author URI:   https://MFMS.com
 Template:     mfms
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  mfms
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

body {
  font-family: 'Montserrat', sans-serif;
}

.d-td-none {
  width: 195px;
  height: 86px;
  object-fit: contain;
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: rgb(255 255 255 / 75%) !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

/* Figma Gradient Overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 248, 248, 0.4) 50%,
    rgba(255, 248, 248, 0) 100%
  );
  z-index: 1;
}

/* Content above overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Typography */
.hero-section h1 {
  font-family: 'Montserrat', sans-serif;
}

.hero-section p {
  max-width: 520px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
}

/* Gradient */

position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;

background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 248, 0.4) 50%, rgba(255, 248, 248, 0) 100%);

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
z-index: 1;
