html, body{
margin: 0 auto;
padding: 0 auto;
text-align: center;
background-repeat: no-repeat;
background-color: #b6a47d;
display: flex;
flex-direction: column;
width: 100%;
overflow-x: hidden;
min-height: 100vh;
height: 100%;
}
header{
 background-color: #b41414;
 text-align: center;
 width: 100%;
 height: 65px;
 margin: 0%;
 position: relative;
}
header a{text-decoration:none;
}
nav a{
text-transform: uppercase;
font-weight: bold;
font-family: arial;
text-align: center;
}
nav ul{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul a{
text-shadow: 1px 1px black;
background-color: #b41414;
transition: 0.5s;
}
nav ul a:hover{
    color: white;
}
a{
    color: #b6a47d;
}
footer{
background-color: #b41414;
 text-align: center;
 width: 100%;
 height: 65px;
 margin: 0%;
 position: relative;
 flex-shrink: 0;
}
main{
    flex: 1;
}
#bbj-logo{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
}
video{
    width: 300px;
}
.copyright{
    color: #b6a47d;
}
.ac, label, input{
 font-family: "Archivo Black", sans-serif;
}
form{
    background-color: #b41414;
    max-width: 400px;
    border-radius: 10%;
    aspect-ratio: 1/1;
    padding: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid black;
}
.formbtn{
    background-color: #b6a47d;
    border-radius: 5%;
    padding: 5px;
    transition: 0.5s;
}
.formbtn:hover{
    color: white;
}
.infobox{
    border-radius: 10%;
}
.texc{
    color: #b6a47d;
}
.socials{
    width: 48px;
    flex-direction: row;
    padding: 20px;
}
.headercontainer{
  position: relative;
  height: 65px;
  width: 100%;
  background-color: #b41414; /* Optional: beige background */
}
@media (max-width: 600px) {
  .headercontainer { /* ← corrected from .header-container */
    height: 55px;
    padding-bottom: 20px;
  }

  #bbj-logo {
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  nav ul {
    flex-direction: column;
    left: 10px;
    top: 10px;
    transform: none;
    gap: 10px;
  }

  nav ul li {
    margin-bottom: 8px;
  }
  #N2{
    transform: translateX(-15%);
  }
}
@media (max-width: 600px) {
  form {
    width: 90%;
    max-width: none;
    aspect-ratio: auto;
    padding: 15px;
    border-radius: 5%;
  }

  input, textarea, label {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
  }

  .formbtn {
    width: 48%;
    margin: 5px 1%;
  }

  #bbj-logo {
    position: static;
    display: block;
    margin: 0 auto;
    height: 50px;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    gap: 10px;
    top: 0px;
  }

  footer {
    height: auto;
    padding: 10px 0;
  }

  .copyright {
    font-size: 0.9rem;
  }
}
#N2{
    width: 450px;
}
