/* bangertprojects2.com base styles - cleaned up and mobile-friendly */
html, body, div, h1, h2, h3, h4, h5, h6, p, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    font: inherit;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

@font-face {
    font-family: 'futuralight';
    src: url('/assets/fonts/futuratot-lig_3-webfont.eot');
    src: url('/assets/fonts/futuratot-lig_3-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/futuratot-lig_3-webfont.woff2') format('woff2'),
         url('/assets/fonts/futuratot-lig_3-webfont.woff') format('woff'),
         url('/assets/fonts/futuratot-lig_3-webfont.ttf') format('truetype'),
         url('/assets/fonts/futuratot-lig_3-webfont.svg#futuratotligregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'futurabold';
    src: url('/assets/fonts/futuratot-bol_59-webfont.eot');
    src: url('/assets/fonts/futuratot-bol_59-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/futuratot-bol_59-webfont.woff2') format('woff2'),
         url('/assets/fonts/futuratot-bol_59-webfont.woff') format('woff'),
         url('/assets/fonts/futuratot-bol_59-webfont.ttf') format('truetype'),
         url('/assets/fonts/futuratot-bol_59-webfont.svg#futuratotbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Base styles */
body {
    font-size: 18px;
    font-family: 'futuralight';
    color: #333;
    background-color: #f5f5f5;
}

strong {
    font-family: "futurabold";
}

h1.logo {
    font-size: 54px;
}

h2.claim {
    display: inline-block;
    margin-left: 162px;
}

h3 {
    font-family: "futurabold";
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

a, a:visited, a:active, a:hover {
    color: #333;
}

a.logo {
    text-decoration: none;
}

/* Layout */
.container {
    margin: 0 auto;
    max-width: 1420px;
    width: 100%;
    background-color: #fff;
}



.header {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* margin-top: 20px; */
}

.navi {
    cursor: pointer;
}

/* Contact section - 50/50 layout */
.contact {
    background-color: #f5f5f5;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.contact .contact-content {
    display: flex;
    width: 100%;
}

.contact_left, .contact_right {
    box-sizing: border-box;
    padding: 40px;
    width: 50%;
}

.contact_copyright {
    padding: 0 40px 40px 40px;
}

/* Projects - 50/50 layout */
.project {
    display: flex;
    min-height: 400px;
}

.text {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text#move {
    order: 2;
}

.time {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.client {
    margin-top: 15px;
}

.image {
    width: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.image#move {
    order: 1;
}

img.gallery {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

div#next {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
}


/* Mobile styles - stack 50/50 layouts */
@media screen and (max-width: 800px) {
    body {
        font-size: 16px;
    }
    
    .header {
        padding: 30px;
    }
    
    .header-bottom {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 15px;
        margin-top: 15px;
    }
    
    h1.logo {
        font-size: 50px;
    }
    
    h2.claim {
        margin-left: 0;
    }
    
    .navi {
        align-self: end;
    }
    
    h3 {
        font-size: 24px;
    }
    
    /* Stack contact 50/50 layout */
    .contact .contact-content {
        flex-direction: column;
    }
    
    .contact_left, .contact_right {
        width: 100%;
        padding: 30px;
    }
    
    .contact_copyright {
        padding: 0 30px 30px 30px;
    }
    
    /* Stack project 50/50 layout - images stack */
    .project {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 15px;
    }
    
    .text, .text#move {
        width: 100%;
        order: 2;
        padding: 30px;
    }
    
    .image, .image#move {
        width: 100%;
        order: 1;
        aspect-ratio: 16/9;
    }
    
    /* YouTube responsive styles */
    .youtube-play-button {
        width: 54px;
        height: 38px;
    }
    
    .youtube-play-button:before {
        border-left: 16px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 20px;
    }
    
    h1.logo {
        font-size: 44px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .contact_left, .contact_right {
        padding: 20px;
    }
    
    .contact_copyright {
        padding: 0 20px 20px 20px;
    }
    
    .text, .text#move {
        padding: 20px;
    }
    
    .image, .image#move {
        aspect-ratio: 16/9;
    }
}

/* YouTube lazy loading styles */
.youtube-lazy {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.youtube-lazy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.youtube-play-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.youtube-play-button:hover {
    background: rgba(255, 0, 0, 0.8);
}

.youtube-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cookie-notice {
    padding: 10px 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    text-align: center;
    background: #f5f5f5;
    z-index: 9999;
}

@media (max-width: 768px) {
    .row:not(.nostack) > * {
        flex: 0 0 100%;
    }
}
