/* Removes the scroll bar */
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
body {
  -ms-overflow-style: none; /* Internet Explorer, Edge */
}
html {
  scrollbar-width: none; /* Firefox */
}

body{
  font-family: 'Open Sans', Arial, sans-serif;
  background-color:#ffffff;
  color:#000000;
  margin: 0; 
  padding-top: 54px;
  padding: 0;
}

h1, h2 {
    font-family: 'Ethnocentric', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000; 
}

header{
  width:100%;
  background-color: #ffffff;
  color:#000000;
  display:block;
  justify-content: center;
  padding-bottom: 20px;
}

header nav {
  top: 0;
  left: 0;
  width: 100%;
  height:3%;
  padding:15px 0;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  z-index: 100;
}

header nav ul {
  list-style: none;
  display:flex;
  justify-content: center;
  gap:40px;
  margin: 0;
  padding:0;
  font-size: 1.1rem;
}

header nav ul a {
  color: #FDB31E;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

header nav ul a:hover{
  color: #FF0000;
}

header nav ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; 
    display: block;
    bottom: -12px; 
    left: 50%;
    background: #FF0000; 
    transform: translateX(-50%); 
    transition: width 0.3s ease;}

header nav ul a:hover::after {
    width: 100%;
}

.hero_center {
  width:100%;
  margin-left: calc(50% - 50vw);
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color:#ffffff;
  text-shadow:2px 2px 5px #000;
  position:relative;
}

.hero_banner_image {
  width: 100%; 
  height: auto; 
  display: block; 
}

#logo{
  width:15%;
  aspect-ratio: 3 / 1;
  position: absolute;
  top: 3%; 
  left: 3%; 
  z-index: 2; 
}

.hero_text_content {
  position:absolute;
  font-family: ethnocentric, sans-serif;
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center; 
  z-index: 1; 
}

.hero_text_content h1 {
    font-size: 3.5vw; 
    font-weight: 900;
    letter-spacing: 10px; 
    text-transform: uppercase;
}

.hero_text_content p {
    font-size: 1.5vw;
    font-weight: 300;
}

main {
    width: 90%;
    margin: 60px auto;
    padding: 0;
    padding-bottom: 20px;
}

.card {
    border-radius: 8px;
    background-image: url(images/action/aiBackground.png);
    object-fit: cover;
    overflow: hidden;
    display: grid;
    grid-template-columns: 5.5% 10% 1fr;
    gap:20px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4); 
}

h4 {
    width:4.5vw;
    aspect-ratio: 1 / 1;
    background-color: #000;
    color:#FDB31E;
    font-size: 2vw;
    font-family: 'Ethnocentric Rg', sans-serif;
    border-radius: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0;
    position: absolute;
}

.card img {
    width: 100%;
    grid-column: 2 / span 1;
    margin: 20px 0px;
}

.card h3 {
font-size: 2.2vw;
}

.card p {
    font-size: 1.2vw;
    margin-right: 20px;
}

footer {
    padding: 20px 0;
    margin-top: 50px;
    background-color: #000000; 
    color: #FDB31E; 
    text-align: center;
    font-size: 0.9em;
    letter-spacing: 1px;
    width:100%;
}