@font-face {
    font-family: "Poppins Regular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

html, body {
    overflow-x: hidden;
}

html {
    background-color: #fff;
}

footer {
    background-color: #222;
}

footer p {
    color: rgb(180, 180, 180);
    font-size: 14px;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins Bold';
    font-weight: 600;
}

p, label {
    font-family: 'Poppins Regular';
    color: #222;
    font-size: 18px;
}

a {
    color: #fff !important;
    transition: color 0.2s;
}

a:hover {
    color: #e5950a !important;
}

.btn-primary {
    background-color: #e5950a !important;
    border-color: #e5950a !important;
    color: #fff !important;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 24px !important;
    width: 200px;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: #e5950a !important;
}

section h1 {
    color: white;
    margin-bottom: 50px;
}


/* NAV */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease-in-out;
}

.navbar.scrolled {
    background: #222;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 1.2rem;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: #e5950a !important;
}

/* HOME */

.home-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.home-video .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.home-video .content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.home-video img {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
}

.home-video h1 {
    margin: 20px 0;
}

.home-video p {
    color: white;
}

/* PRODUCTS */

.products-section .product-img,
.products-section .product-logo-img {
    width: 100%;
}

.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 100px;
    height: 4px;
    background-color: #e5950a;
    border-radius: 2px;
}

.beuno-human-section {
    position: relative;
    padding: 6rem 0;
    background-image: url("../img/beuno-product-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.beuno-human-section .container {
    position: relative;
    z-index: 2;
}

.beuno-human-section::before {
    content: none;
}

/* TEAM */

.team-section {
    background-color: #fff; /* o blanco */
}

.team-img {
    width: 160px;
    height: 200px;
    object-fit: cover;
}

/* CONTACT */

.contact-section a {
    color: #222 !important;
    transition: color 0.2s;
}

.contact-section a:hover {
    color: #e5950a !important;
}

/* FOOTER */

.site-footer {
    background-color: #222;
    color: #ffffff;
}

.footer-logo {
    height: 32px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #e5950a;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}


/* MEDIA QUERIES */

@media (max-width: 768px) {
  .beuno-human-section {
    padding: 4rem 0;
    background-position: right center;
  }

  .beuno-human-section .row {
    justify-content: center;
    text-align: center;
  }
}

/* Mobile & tablet: overlay blanco */
@media (max-width: 991.98px) {
  .beuno-human-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
  }

  .beuno-human-section .container,
  .beuno-human-section .container-fluid {
    position: relative;
    z-index: 2;
  }
}
