@charset "utf-8";
/* CSS Document */

body {
    background-size: contain;
    background-repeat: repeat-y;
    background-image: url(../images/bkgd.webp);
	min-height: 100vh;
  min-height: -webkit-fill-available;
}
html {
  overflow-y: scroll; /* forces stable scrollbar gutter */
	height: -webkit-fill-available;
}
h1 {font-size: 35px;
}

h2 {font-size: 27px;
}

h3 {font-size: 23px;
}
.navbar {
    background-color: rgba(0,0,0,0.40);
}

.header{
    padding-bottom: 20px;

}

.footer {
    background-color: #393939;
    color: #FFFFFF;
    border-top: 10px solid #DC7A0D;
    background-image: url(../images/footer.webp);
    background-size: cover;
    margin-top: 25px;
    padding-top: 15px;
}

.footer a{
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: bold;
}

:root {
  --nav-height: 5px;
}

/* HERO WRAPPER */
body { padding-top: var(--nav-height); }

.hero {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    padding-top: 65px;
	overflow: hidden;
}

/* INNER LAYOUT = TOTAL HEIGHT */
.hero-inner {
    display: flex;
    flex-wrap: nowrap; /* 🔑 prevents stacking */
    overflow: hidden;
}

/* LEFT + RIGHT EACH HALF HEIGHT */
.hero-left,
.hero-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

/* WIDTH SPLIT */
.hero-left {
  width: 25%;
}

.hero-right {
  width: 75%;
  padding: 40px;
	position: relative;
}
.hero-right .content {
  position: relative;
  z-index: 2; /* TEXT ABOVE */
}

.hero-boxes {
  position: absolute;
  inset: 0;
  z-index: -1; /* BOXES BELOW TEXT */
  pointer-events: none;
}
/* VIDEO STYLING */
.hero-left video {
    width: 90%;
    max-width: 420px;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    width: 100%;
    height: auto;
  
}


.hero-boxes {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.box {
  position: absolute;
  bottom: 0px;
  width: 200px;
  max-width: 18vw;
  transform-origin: center;
  will-change: transform;
}

/* spaced across right column */
.box1 {
  left: 33%;
  transform: translateX(-50%) rotate(0deg);
}

.box2 {
  left: 57%;
  transform: translateX(-50%) rotate(0deg);
}

.box3 {
  left: 80%;
  transform: translateX(-50%) rotate(0deg);
}




.overlay {
    background-image: url(../images/hero-bkgd.webp);
    background-size: cover;
    min-height: 50px;
    background-position: 0% bottom;
    background-repeat: no-repeat;
	border-bottom: 10px solid #393939;
}

/* TEXT */
.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.navbar h2 {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
}
.content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #373737;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.hero-spacer {
  height: 10px;
}
/* MOBILE (still 2 columns, just tighter) */
@media (max-width: 768px) {

  .hero {
   padding-top:100px;
   }
  .hero-inner {
    height: 27vh;
  }
  
  .tag2{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
	text-shadow: 2px 2px 3px #FFFFFF;
  }
  .hero-left {
    width: 30%;
  }

  .hero-right {
    width: 65%;
    padding: 20px;
  }

  .hero h1 {
    font-size: 20px;
    text-align: center;	  
  }

  .content p {
    font-size: 0.95rem;
  }
  .overlay {

    height: 10px;
    background-position: 0% bottom;
    background-repeat: no-repeat;
}
	.box1 {
  left: 25%;
  top:60%;
  transform: translateX(-50%) rotate(0deg);
}

.box2 {
  left: 55%;
  top:60%;
  transform: translateX(-50%) rotate(0deg);
}

.box3 {
  left: 85%;
  top:60%;
  transform: translateX(-50%) rotate(0deg);
}
}

@media (min-width: 769px) {

  .hero-inner {
    height: 45vh;
  }
  .tag1{
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 10px;
	text-shadow: 2px 2px 3px #FFFFFF;
  }
  .tag2{
    font-weight: bold;
    font-size: 25px;
    padding-bottom: 20px;
	text-shadow: 2px 2px 3px #FFFFFF;
  }
  .hero-left,
  .hero-right {
    height: 100%;
  }

  .hero-left video {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

}