* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1C1C1C;
    color: #D6CFC2;
}


/* Navigation */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 12px;

    padding: 25px 7%;

    background-color: #1C1C1C;

    z-index: 1000;
}

.lang-switch {
    position: static;
    z-index: 1001;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(214, 207, 194, 0.2);
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.9);
}

.lang-btn {
    border: none;
    background: transparent;
    color: #D6CFC2;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0.65;
    transition: 0.2s ease;
}

.lang-btn.active {
    background: #D6CFC2;
    color: #1C1C1C;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

nav {
    display: flex;

    gap: 25px;
    margin-left: auto;
}

nav a {
    color: #D6CFC2;

    text-decoration: none;

    font-size: 14px;

    transition: opacity;
}

nav a:hover {
    opacity: 0.5;
}


/* Hero */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 100px 10%;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.65)
        ),
        url("images/film-set.jpg");

    background-size: cover;

    background-position: center;

    color: #D6CFC2;
}

.hero-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 45px;
}

.hero-content {

    max-width: 750px;
    flex: 1;
}

.hero-visual {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}

.subtitle {

    letter-spacing: 4px;

    font-size: 12px;

    margin-bottom: 25px;
}

h1 {

    font-size: clamp(50px, 8vw, 110px);

    line-height: 0.95;

    margin-bottom: 30px;
}

.hero-content p {

    max-width: 600px;

    line-height: 1.7;

    font-size: 18px;

    margin-bottom: 35px;
}


/* Button */

.button {

    display: inline-block;

    padding: 15px 28px;

    background: #D6CFC2;

    color: #1C1C1C;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.button:hover {

    transform: translateY(-3px);

    opacity: 0.85;
}


/* Sections */

.section {

    padding: 130px 10%;

    max-width: 1400px;

    margin: auto;
}

.section + .section {

    position: relative;

    border-top: none;
}

.section + .section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 10%;

    width: calc(100% - 20%);

    height: 1px;

    background: rgba(214, 207, 194, 0.22);
}

.dark {

    background-color: #1C1C1C;

    color: #D6CFC2;

    max-width: 1400px;

    padding-left: 10%;

    padding-right: 10%;
}

.section-label {

    font-size: 12px;

    letter-spacing: 4px;

    margin-bottom: 25px;

    opacity: 0.7;
}

h2 {

    font-size: clamp(40px, 5vw, 70px);

    margin-bottom: 30px;
}

.text {

    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;
}

.production-layout {

    display: block;

    margin-top: 20px;
}

.production-copy {

    display: block;
}

.production-media {

    display: block;

    margin-top: 30px;
}

a[href^="mailto:"],
a[href^="tel:"] {

    color: inherit;

    text-decoration: none;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {

    opacity: 0.7;
}


/* Galerie */

.gallery {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.gallery img {

    width: 100%;

    height: 350px;

    object-fit: cover;
}

.production-image {

    display: block;

    width: min(100%, 720px);

    height: auto;

    border: 1px solid rgba(214, 207, 194, 0.18);
}


/* Footer */

footer {

    background: #000000;

    color: #D6CFC2;

    text-align: center;

    padding: 30px;
}


/* Mobile */

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .production-layout {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .gallery {

        grid-template-columns: 1fr;
    }

    .gallery img {

        height: 300px;
    }

}


.legal-page {
    max-width: 900px;
    margin: auto;
    padding: 160px 10% 100px;
}

.legal-page h1 {
    font-size: 60px;
    margin-bottom: 60px;
}

.legal-page h2 {
    font-size: 25px;
    margin-top: 50px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
}

.legal-page ul {
    max-width: 750px;
    margin: 20px 0 20px 20px;
    padding-left: 1.2em;
}

.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: inherit;
}


.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #D6CFC2;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}