@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

/* font-family: "Reddit Sans",
sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal; */

/* font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: */

* {
    box-sizing: border-box;
    margin: 0;
    
}

body {
    background-color: #F9F5F0;
}

header {
    z-index: 999;
    position: sticky;
    top: 0;
    background-color: #F9F5F0;
    color: #344F1F;
    padding: 10px 80px;
    /* Internal spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    /* Uses the same background color as the rest of the page/header */
    background-color: #F9F5F0;
    color: #344F1F;
    width: 100%;

    /* Apply vertical padding, use your variables for consistency */
    padding: 8px;

    /* Center text or copyright information */
    text-align: center;

    /* Top margin to separate it from the main content */
    margin-top: var(--spacing-xxl);
}

.footer__content {
    /* Replicate the header's flex behavior for internal spacing/layout */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Keeps the content centered on very wide screens, if needed */
    max-width: 1400px;
    margin: 0 auto;
}

.footer__logo {
    /* Inherits your existing H1 style for the logo/site name */
    margin: 0;
}

.footer__nav-list {
    /* Replicate the header nav ul style */
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* Optional: Wrap the list if the screen is too narrow */
    flex-wrap: wrap;
    /* justify-content: flex-end;  */
    /* Align to the right side of the footer content */
}

.footer__nav-list li {
    /* Replicate the header nav li style */
    margin-left: 70px;
}

.footer__nav-list li:first-child {
    margin-left: 0;
}

/* Replicate the `nav a` styles from your existing header CSS
   (Font family, weight, size, padding, hover effect)
*/
.footer__nav-list a {
    font-family: "Handjet", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: #344F1F;
    padding: 8px 15px;
    transition: color 0.3s;
}

.footer__nav-list a:hover {
    color: #ef970b;
    /* Your hover color */
}

/* /.................../ 
/.................../  */
/*   SPACING   */
/* /.................../ 
/.................../  */

:root {

    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 2rem;
    --spacing-l: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 7rem;
    --spacing-xxxl: 9rem;
    --spacing-xxxxl: 11rem;
    --spacing-xxxxxl: 15rem;
    --spacing-xxxxxxl: 20rem;

}

.margin__x-xxl {
    margin-left: var(--spacing-xxl);
    margin-right: var(--spacing-xxl);
}

.margin__x-xl {
    margin-left: var(--spacing-xl);
    margin-right: var(--spacing-xl);
}

.margin__x-l {
    margin-left: var(--spacing-l);
    margin-right: var(--spacing-l);
}

.margin__x-m {
    margin-left: var(--spacing-m);
    margin-right: var(--spacing-m);
}

.margin__x-s {
    margin-left: var(--spacing-s);
    margin-right: var(--spacing-s);
}

.margin__top-xxxl {
    margin-top: var(--spacing-xxxl);
}

.margin__top-xxl {
    margin-top: var(--spacing-xxl);
}

.margin__top-xl {
    margin-top: var(--spacing-xl);
}

.margin__top-l {
    margin-top: var(--spacing-l);
}

.margin__top-m {
    margin-top: var(--spacing-m);
}

.margin__top-s {
    margin-top: var(--spacing-s);
}



/* margin bottom */

.margin__bottom-xxxl {
    margin-bottom: var(--spacing-xxxl);
}

.margin__bottom-xxl {
    margin-bottom: var(--spacing-xxl);
}

.margin__bottom-xl {
    margin-bottom: var(--spacing-xl);
}

.margin__bottom-l {
    margin-bottom: var(--spacing-l);
}

.margin__bottom-m {
    margin-bottom: var(--spacing-m);
}

.margin__bottom-s {
    margin-bottom: var(--spacing-s);
}





.padding__bottom-xxxl {
    padding-bottom: var(--spacing-xxxl);
}

.padding__bottom-xxl {
    padding-bottom: var(--spacing-xxl);
}

.padding__bottom-xl {
    padding-bottom: var(--spacing-xl);
}

.padding__bottom-l {
    padding-bottom: var(--spacing-l);
}

.padding__bottom-m {
    padding-bottom: var(--spacing-m);
}

.padding__bottom-s {
    padding-bottom: var(--spacing-s);
}




.padding__top-xxxl {
    padding-top: var(--spacing-xxxl);
}

.padding__top-xxl {
    padding-top: var(--spacing-xxl);
}

.padding__top-xl {
    padding-top: var(--spacing-xl);
}

.padding__top-l {
    padding-top: var(--spacing-l);
}

.padding__top-m {
    padding-top: var(--spacing-m);
}

.padding__top-s {
    padding-top: var(--spacing-s);
}

.padding__x-xxl {
    padding-left: var(--spacing-xxl);
    padding-right: var(--spacing-xxl);
}

.padding__left-xl {
    padding-left: var(--spacing-xl);
}

.padding__left-xxl {
    padding-left: var(--spacing-xxl);
}

.padding__left-xxxl {
    padding-left: var(--spacing-xxxl);
}

.padding__left-xxxxl {
    padding-left: var(--spacing-xxxxl);
}

.padding__left-xxxxxl {
    padding-left: var(--spacing-xxxxxl);
}

.padding__left-xxxxxxl {
    padding-left: var(--spacing-xxxxxxl);
}


/* /.................../ 
/.................../  */
/*   FONT SETTINGS    */
/* /.................../ 
/.................../  */

h1 {
    color: #344F1F;
    font-family: "Handjet", sans-serif;
    font-weight: 700;
    font-size: 24px;
}

h2 {
    color: #344F1F;
    font-family: "Handjet", sans-serif;
    font-weight: 900;
    font-size: 145px;
    letter-spacing: 5px;
    text-align: center;
}

h3 {
    color: #344F1F;
    font-family: "Reddit Sans";
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
}

h4 {
    text-align: center;
    color: #344F1F;
    font-family: "Reddit Sans";
    font-weight: 700;
    font-size: 14px;
}

h5 {
    color: #344F1F;
    font-family: "Handjet", sans-serif;
    font-weight: 900;
    font-size: 44px;
    letter-spacing: 5px;
    text-align: center;
}

h6 {
    margin-bottom: 5px;
    color: #344F1F;
    font-family: "Reddit Sans";
    font-weight: 700;
    font-size: 24px;
}

h7 {
    color: #344F1F;
    font-family: "Handjet", sans-serif;
    font-weight: 900;
    font-size: 90px;
    letter-spacing: 5px;
    text-align: center;
}

h8 {
    display: block;
    color: #344F1F;
    font-family: "Reddit Sans";
    font-weight: 500;
    font-size: 32px;
}

h9 {
    display: block;
    margin-bottom: 10px;
    color: #344F1F;
    font-family: "Handjet", sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 2px;
}

.whitetext {
    color: #eae9e9;
}

p {
    color: #344F1F;
    font-family: "Reddit Sans";
    font-weight: 430;
    font-size: 17px;
}

.pproto {
    color: #eae9e9;
    font-family: "Reddit Sans";
    font-weight: 430;
    font-size: 17px;
}

figcaption {
    margin-top: 5px;
    display: block;
    color: #344F1F;
    font-family: "Reddit Sans";
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
}

/* /.................../ 
/.................../  */
/*   LAYOUT    */
/* /.................../ 
/.................../  */

main {
    background-color: #F9F5F0;
}

.main2 {
    background-color: black;
    padding-bottom: 4rem;
}

nav ul {

    list-style: none;
    /* Removes bullet points */
    padding: 5px;
    margin: 0;
    display: flex;
    /* Makes the list items go horizontal */
}

nav li {
    margin-left: 20px;
    /* Spacing between navigation buttons */
}

nav a {
    font-family: "Handjet", sans-serif;
    font-weight: 700;
    font-size: 24px;
    /* 3. Link Styling (The "Button" look) */
    text-decoration: none;
    /* Removes the underline */
    color: #344F1F;
    padding: 8px 15px;
    /* Adds padding to make them look like buttons */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

nav a:hover {
    color: #ef970b;
}


.descriptiontext {
    width: 60%;
    margin-top: 240px;
}



.scroll-container {
    /* padding: 100px 0; */
}

.image-section {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: auto;
    margin: 0 auto 0px auto;
    /* padding: 0 40px; */
    min-height: 100px;
}

.image-wrapper {
    flex-shrink: 0;
    width: 800px;
    height: 290px;
    overflow: hidden;
    border-radius: 3px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transform: translateX(-15px) scale(0.7);
    transform-origin: center left;
    transition: transform 0.3s ease
}

.image-wrapper.active {
    transform: translateX(0px) scale(0.95);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    padding-right: 10%;
    flex: 1;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-content.active {
    opacity: 1;
    transform: translateX(0);
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #344F1F;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Spacer for initial scroll */
.spacer {
    height: 15vh;
}

.spacer2 {
    height: 30vh;
}

.fade-in-text {

    /* Start Invisible: The text begins completely transparent */
    opacity: 0;

    /* Apply the animation */
    /* Name | Duration | Timing Function | Fill Mode */
    animation: textFadeIn 0.5s ease-out forwards;

    /* Optional: Add a delay so the effect starts after the page is visually ready */
    animation-delay: 0.5s;
}

/* 2. Define the Keyframes for the animation */
@keyframes textFadeIn {

    /* Start State (0%): Hiding the element and positioning it above its final spot */
    0% {
        opacity: 0;
        /* MODIFIED: Starts 20px above its final position */
        transform: translateY(-20px);
    }

    /* End State (100%): Making the element fully visible and in its final position */
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration-thickness: 4px;
    text-underline-offset: 7px;
}

a:link {
    color: #344F1F;
}

a:visited {
    color: #344F1F;
}

a:hover {
    color: #ef970b;
}

a:active {
    color: #ef970b;
}

.heroimage {}

.full-sized {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.full-width-video {
   
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.introtext {
    margin-bottom: var(--spacing-l);
    width: 73%;
}

.introtext2 {
    margin-bottom: var(--spacing-l);
    width: 60%;
}

.introtextcol {
    width: 74%;
    display: flex;
    margin-bottom: var(--spacing-l);
    gap: 20px;
    /* width: 73%; */
}

.textcol2 {
    flex: 1 1 0;
}

.introtextcol2 {
    display: flex;
    margin-bottom: var(--spacing-l);
    gap: 20px;
    /* width: 73%; */
}

.textcol {
    flex-grow: 1;
}


.twovideos {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
}

.twovideosex1 {
    display: flex;
    /* justify-content: right; */
    gap: 15px;
}

.my-video {
    /* Set a max width so it scales down on smaller screens */
    width: 100%;
    /* Ensures height scales with the width to maintain aspect ratio */
    height: auto;
    /* Optional: Remove the border if it's there */
    border: none;
}

.my-videoex1_fix {
    /* Set a max width so it scales down on smaller screens */
    width: 95%;
    /* Ensures height scales with the width to maintain aspect ratio */
    height: auto;
    /* Optional: Remove the border if it's there */
    border: none;
}

.my-videoex1 {
    /* Set a max width so it scales down on smaller screens */
    width: 450px;
    /* Ensures height scales with the width to maintain aspect ratio */
    height: auto;
    /* Optional: Remove the border if it's there */
    border: none;
}


.colimages {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.colimages_right {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 70%;
    margin-left: auto;
}

.colimages img {
    display: block;
    width: 100%;
    height: auto;
}

.colimages_right img {
    display: block;
    width: 100%;
    height: auto;
}

.colimages_solo {
    display: flex;
}

.indimages_solo_left img {
    display: block;
    width: 73%;
}

.indimages_solo_right img {
    display: block;
    width: 73%;
    margin-left: auto;
}

.sidevideodesc {
    display: flex;
    flex-direction: row;
    gap: 75px;
}

.sidevideodesc2 {
    background-color: black;
    display: flex;
    flex-direction: row;
    gap: 75px;
}

.sidevideodesc>.fade-in-text {
    /* flex-grow: 1; -> Allows it to take up available space */
    /* flex-basis: 0; -> Sets the initial size to 0 before growing */
    /* Use 'flex' shorthand for cleaner code: flex-grow | flex-shrink | flex-basis */
    flex: 1 1 50%;
    /* Grow: 1, Shrink: 1, Initial width: 50% */
}

.embededvid-wrap {
    /* This sets the max size of the video block */
    flex: 0 0 45%;
    /* Centers the video block if needed, assuming the wrapper is a block element */
}

.embededvid {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio Calculation: (9 / 16) * 100 = 56.25% */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.embededvid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.singlevideo {
    /* justify-content: center; */
}

.singlevideosrc {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: auto;
}

.singlevideoex3 {
    /* justify-content: center; */
}

.singlevideosrcex3 {
    display: block;
    width: 70%;
    height: auto;
}