/* Base styles */
body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #222;
}

.image {
    max-width: none;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 44px;
    font-weight: 700;
    color: #c8c3bc;
}

h2 {
    margin-top: 0px;
    margin-bottom: 10px;
    color: #676770;
    font-size: 32px;
    line-height: 36px;
    font-weight: 300;
    text-align: center;
}

h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #c8c3bc;
    font-size: 32px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 28, 0.95);
    padding: 20px 30px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: padding 0.3s ease, background 0.3s ease;
    backdrop-filter: none;
}

/* Shrunk header when scrolling */
header.shrink {
    padding: 3px 0px;
    background: #1c1c1c;
}

/* Adjust site title size on shrink (optional) */
header .site-title {
    margin-top: 2px;
    margin-bottom: 0px;
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.5s;
    position: relative;
    float: left;
    text-decoration: none;
    padding-top: 20px;
    padding-bottom: 8px;
    text-decoration-color: initial;
    color: #c8c3bc;
    font-weight: bold;
}

header.shrink .site-title {
    font-size: 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    transition: all 0.5s;
    width: 1500px;
}

header.shrink .header-container {
    width: 2000px;
}

.nav-links {
    font-family: "Open Sans", sans-serif;
    background-color: transparent;
    transition: all 300ms ease-in-out;
    color: #848494;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    text-align: left;
}

.nav-links a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    color: white;
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
    transition: background 0.2s ease;
    font-size: 19px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links a.active,
.nav-links a:hover {
    color: #2e9dff;
}

/* Background colors per section */
.heading-intro {
    padding-top: 160px;
    margin-bottom: 30px;
    color: #c8c3bc;
    text-shadow: 1px 1px 10px black;
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.subheading-intro {
    margin-bottom: 40px;
    color: #F9F6EE;
    text-shadow: 2px 2px 10px black;
    font-size: 25px;
    line-height: 40px;
    font-weight: 400;
    /*text-align: center;*/
    letter-spacing: 3px;
    text-transform: uppercase;
}

.content-wrapper {
   position: relative;
    z-index: 1;
    max-width: 66%;
    margin: 0 auto;
    padding: 20px;
    color: white;
}

.container{
    display: flex;
    gap: 50px; /* optional spacing between divs */
    justify-content: center; /* center horizontally */
    flex-wrap: wrap; /* allows wrapping on small screens */
    margin: 0 auto; /* optional spacing */
    max-width: 80%;
    
}

.box {
    flex: 1 1 25%;
}

.parallax-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    display: inline;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 120%;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6);
    z-index: 0;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}

.section-video {
    background: #1c1c1c;
    position: relative;
    width: 100%;
    min-height: 30vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}
.section-extra {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

.video-wrapper {
    position: relative;
    padding: 20px;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
}

.seperator-vertical {
    border-left: 2px solid rgba(85, 84, 84, 0.795);
    top: -10;
    width: auto;
    height: 40px;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

footer{
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 28, 0.95);
    padding: 6px 30px;
    z-index: 1000;
}

.footer-container {
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    margin: 0 auto;
    width: 1200px;
}

.footer-container .nav-links {
    font-family: "Open Sans", sans-serif;
    background-color: transparent;
    transition: all 300ms ease-in-out;
    color: #848494;
    position: relative;
    display:inline-flex;
    vertical-align: top;
    justify-content:space-evenly; 
    margin: 0 auto;
}

.footer-container .nav-links a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    text-align: center;
    color: white;
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    transition: background 0.2s ease;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-container .nav-links a.active,
.footer-container .nav-links a:hover {
    color: #2e9dff;
}