:root {
    --bg: #0C0C0C;
    --white: #FFFFFF;
}

@font-face {
    font-family: 'DIN Bold';
    src: url('../fonts/din-bold.woff2') format('woff2'),
        url('../fonts/din-bold.woff') format('woff'),
        url('../fonts/din-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Regular';
    src: url('../fonts/din-regular.woff2') format('woff2'),
        url('../fonts/din-regular.woff') format('woff'),
        url('../fonts/din-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Light';
    src: url('../fonts/din-light.woff2') format('woff2'),
        url('../fonts/din-light.woff') format('woff'),
        url('../fonts/din-light.otf') format('opentype');
    font-weight: lighter;
    font-style: normal;
    font-display: swap;
}

html {
    background-color: var(--bg);
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Typography */
h1 {
    font-family: 'DIN Bold';
    font-size: 3.2rem;
    margin: 0;
    text-transform: uppercase;
    line-height: 3.2rem;
}

h2 {
    font-family: 'DIN Bold';
    font-size: 2.5rem;
    margin: 0 0 20px;
    line-height: 3rem;
    text-transform: uppercase;
}

h3 {
    font-family: 'DIN Bold';
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 0 0 10px;
}

p {
    font-family: 'DIN Light';
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 10px;
}

nav {
    width: 100%;
    position: fixed;
    height: 70px;
    background-color: var(--bg);
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.nav-container {
    width: 100%;
    margin: 0px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-container>a {
    line-height: 0;
    display: block;
}

.nav-logo {
    width: 118px;
    height: auto;
    display: block;
}

.burger-menu {
    display: none;
}

.nav-social-links {
    display: none;
}

.nav-menu-items {
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-family: 'DIN Regular';
    color: var(--white);
    align-items: flex-start;
    position: relative;
    height: 24px;
    --underline-left: 0px;
    --underline-width: 0px;
    --underline-opacity: 1;
}

.nav-menu-items::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--underline-left);
    width: var(--underline-width);
    height: 1px;
    background-color: var(--white);
    opacity: var(--underline-opacity);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-menu-item {
    margin-top: 3px;
    text-decoration: none;
    color: var(--white);
    line-height: 1em;
    position: relative;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.nav-menu-item:hover {
    opacity: 0.5;
}

.nav-language-selector {
    position: relative;
    width: 118px;
    display: flex;
    justify-content: flex-end;
}

.language-dropdown {
    font-family: 'DIN Regular';
    color: var(--white);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.language-current {
    user-select: none;
    height: 30px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    gap: 4px;
    font-size: 0.85rem;
    border: 1px solid var(--white);
    box-sizing: border-box;
    border-radius: 4px;
}

.language-current::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid var(--white);
    display: inline-block;
    margin-left: 2px;
    margin-top: 2px;
}

.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg);
    display: none;
    flex-direction: column;
    border: 1px solid var(--white);
    border-top: none;
    border-radius: 0 0 4px 4px;
    width: 50px;
    box-sizing: border-box;
    margin-top: -1px;
    padding: 2px;
}

.language-dropdown:hover .language-current {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.language-dropdown:hover .language-options {
    display: flex;
}

.language-option {
    text-align: left;
    width: 100%;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    box-sizing: border-box;
    border-radius: 2px;
}

.language-option:hover {
    background-color: var(--white);
}

.language-option a {
    color: var(--white);
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 8px;
    box-sizing: border-box;
}

.language-option:hover a {
    color: var(--bg);
}

.language-option:not(:last-child) {
    border-bottom: 1px solid var(--white);
}

/* Social Links Fixed */
.social-links-fixed {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 100;
    transition: opacity 0.5s ease;
}

.social-link {
    display: block;
    height: 20px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    transform: scale(1.2);
    opacity: 1;
}

.social-link img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Request Quote Fixed */
.request-quote-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    z-index: 90;
    transition: opacity 0.5s ease;
}

.rabbit-icon {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rabbit-icon img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 5px;
    width: 1px;
    background-color: var(--white);
    z-index: 90;
    opacity: 0.5;
    transition: top 1s ease, height 0.3s ease;
}

/* CTA Button - Universal button style */
.cta-button {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: 'DIN Light';
    font-size: 1rem;
    padding: 15px 40px;
    padding-bottom: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.request-quote-button {
    margin-top: 0;
    padding: 10px 12px;
    text-decoration: none;
    font-family: 'DIN Regular';
    transition: opacity 0.3s ease;
    background-color: var(--bg);
    font-size: 0.85rem;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--bg);
}

/* Common Utility Classes */
.text-left {
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

.text-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

/* Common Section Styles */
.section-text {
    flex: 1;
}

.section-text-inner {
    width: 100%;
}

.section-image {
    flex-shrink: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Background Section Overlay Pattern */
.background-section {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
    will-change: background-position;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    opacity: 0.7;
    z-index: 1;
}

.section-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
    min-height: 600px;
    z-index: 2;
}

.section-text-centered {
    max-width: 600px;
    text-align: center;
}

/* Contact/CTA Section Pattern */
.contact-section {
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    max-width: 1200px;
    margin: -100px auto 0px !important;
    min-height: 100vh;
    justify-content: center;
}

.contact-section-text {
    font-size: 1rem;
    max-width: 600px;
}

/* Content Container Pattern */
.content-container {
    width: 100%;
    background-color: var(--bg);
    color: var(--white);
}

/* Section Column - 1200px max-width sections */
.section-column {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Header - Common header styling for static pages */
.page-header {
    margin: 80px auto;
    margin-top: 120px;
    text-align: center;
}

/* Column Layout Patterns */
.section-2-columns {
    margin: 80px auto;
}

.section-2-columns .two-column {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.section-3-columns {
    margin: 80px auto;
}

.section-3-columns .three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .section-column {
        width: 100%;
    }

    .page-header {
        padding: 0px 30px;
        box-sizing: border-box;
    }

    .section-2-columns,
    .section-3-columns,
    .productions-section,
    .productions-video {
        padding: 0px 30px;
        box-sizing: border-box;
    }

    .contact-section {
        min-height: 80vh;
    }
}

@media (max-width: 1000px) {

    h1 {
        font-size: 2.8rem;
        line-height: 2.8rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
        margin: 0 0 10px;
    }

    h3 {
        font-size: 1.2rem;
        margin: 0 0 5px;
    }

    p {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .nav-menu-items {
        font-size: 1rem;
    }

    .section-column {
        margin: 60px auto;
    }

    .section-2-columns .two-column {
        gap: 30px;
    }

    .section-3-columns .three-column {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section-3-columns .three-column>*:first-child {
        grid-column: 1 / -1;
    }

    .page-header {
        margin-top: 120px;
    }

    .background-section {
        max-height: 500px;
        min-height: 500px;
        margin: 50px 0;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 20px;
        padding-bottom: 16px;
        margin-top: 10px;
    }

    .request-quote-button {
        margin-top: 0;
        padding: 10px 12px;
        text-decoration: none;
        font-family: 'DIN Regular';
        transition: opacity 0.3s ease;
        background-color: var(--bg);
        font-size: 0.85rem;
    }
}

@media (max-width: 800px) {


    .section-2-columns .two-column {
        flex-direction: column;

    }

    .aboutus-section-1.section-2-columns .two-column {
        flex-direction: column-reverse;
    }

    .section-text-inner {
        text-align: center;
        max-width: 600px;
    }

    .section-image {
        width: 100%;
    }

    .section-image img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .background-section {
        max-height: 400px;
        min-height: 400px;
        margin: 50px 0;
    }
}

@media (max-width: 720px) {
    .section-content-wrapper {
        padding: 20px;
    }

    /* Mobile Navigation */
    nav {
        height: 50px;
        /*transition: height 0.3s ease;*/
    }

    nav.menu-open {
        height: 100vh;
    }

    nav.menu-open .nav-container {
        height: 100%;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        height: 50px;
        align-items: flex-start;
        margin: 0px;
    }

    .nav-container>a {
        order: 2;
        flex: 0 0 118px;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        left: 20px;
        top: 25px;
        transform: translateY(-50%);
        z-index: 101;
    }

    .burger-menu span {
        width: 25px;
        height: 2px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu-items {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        /*transition: all 0.3s ease;*/
        gap: 0;
        padding-bottom: 0;
    }

    nav.menu-open .nav-menu-items {
        height: calc(100vh - 50px);
        max-height: calc(100vh - 200px);
        opacity: 1;
        padding-bottom: 100px;
        box-sizing: border-box;
        font-size: 1.5rem;
    }

    .nav-menu-items::after {
        display: none;
    }

    .nav-language-selector {
        position: absolute;
        right: 12px;
        top: 25px;
        width: fit-content;
        transform: translateY(-50%);
    }

    .language-current {
        height: 26px;
        width: 42px;
        font-size: 0.7rem;
        padding-left: 6px;
    }

    .language-options {
        width: 42px;
        box-sizing: border-box;
    }

    .language-option {
        padding: 3px 4px;
        font-size: 0.7rem;
    }

    .nav-social-links {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding-bottom: 100px;
    }

    nav.menu-open .nav-social-links {
        display: flex;
        opacity: 1;
    }

    .nav-social-link {
        display: block;
        height: 20px;
        width: auto;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.8;
    }

    .nav-social-link:hover {
        transform: scale(1.2);
        opacity: 1;
    }

    .nav-social-link img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .social-links-fixed {
        display: none;
    }

    .request-quote-button {
        display: none;
    }

    .background-section {
        max-height: 300px;
        min-height: 300px;
        margin: 20px 0;
    }

    .section-2-columns,
    .section-3-columns {
        padding: 0px 20px;
    }

    .contact-section {
        padding: 0px 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 500px) {
    h2 {
        font-size: 1.4rem;
        line-height: 1.6rem;
        margin: 0 0 10px;
    }

    h3 {
        font-size: 1rem;
        margin: 0 0 5px;
    }

    .section-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }


}