* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(12px);

    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: #d60000;
}

.navbar nav {
    display: flex;
    gap: 40px;
}

.navbar nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: #e00000;
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.language-switcher button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: white;

    padding: 7px 10px;

    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.language-switcher button:hover {
    background: #d60000;
    border-color: #d60000;
}


.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 130px 7vw 80px;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #080808 0%,
            #080808 48%,
            #5c0000 70%,
            #d00000 100%
        );
}

.hero h1 > span[data-i18n="heroSmallTitle"] {
    color: #fff;
}

.about h2 span[data-i18n="aboutTitle"] {
    color: #fff;
}

.contact h2 span[data-i18n="contactTitle"] {
    color: #fff;
}

.hero-small-title{
    display: block;
    font-size: 70%;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 70vw;
    height: 70vw;

    right: -35vw;
    bottom: -40vw;

    border-radius: 50%;

    background: rgba(255, 0, 0, 0.15);

    filter: blur(100px);

    pointer-events: none;
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #e00000;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(50px, 6vw, 95px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 35px;
}

.hero h1 span,
.section-heading h2 span {
    color: #e00000;
}

.hero-text {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 40px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    background: #d60000;

    padding: 17px 25px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.hero-button span {
    font-size: 20px;
}

.hero-button:hover {
    background: #ff0000;
    transform: translateY(-3px);
}


.hero-image {
    position: absolute;

    right: 6vw;
    top: 18%;

    width: 43vw;
    max-width: 700px;

    z-index: 1;

    transform: rotate(0deg);
}


.hero-image img {
    display: block;

    width: 100%;
    height: 600px;

    object-fit: cover;

    filter: contrast(1.05);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


.about {
    min-height: 70vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

    padding: 140px 10vw;

    background: #080808;
}

.section-heading h2 {
    font-size: clamp(45px, 5vw, 75px);

    line-height: 1;

    letter-spacing: -3px;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 25px;
}


.gallery {
    padding: 140px 7vw;

    background:
        linear-gradient(
            145deg,
            #080808 0%,
            #080808 45%,
            #350000 100%
        );
}

.gallery .section-heading {
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.gallery-item {
    position: relative;

    background: #111;

    transition: transform 0.15s linear;
}

.gallery-item img {
    width: 100%;
    height: 500px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

.gallery-caption {
    padding: 25px 5px 10px;
}

.gallery-caption h3 {
    color: #e00000;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;
    line-height: 1.6;

    max-width: 500px;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.1);
}

.contact {
    min-height: 80vh;

    padding: 150px 10vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

    background: #050505;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;

    gap: 8px;

    padding: 25px;

    border-left: 3px solid #d60000;

    background: #101010;

    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    background: #151515;
}

.contact-item span {
    color: #888;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.contact-item strong {
    font-size: 20px;
}



footer {
    width: 100%;
    padding: 30px 7vw;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #666;

    font-size: 12px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.language-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 28px;
    cursor: pointer;
}


/* TABLET + MENŠÍ PC */
@media (max-width: 900px) {

    .navbar {
        height: 75px;
        padding: 0 5vw;
    }

    .language-menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .navbar nav {
        display: flex;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;

        flex-direction: column;
        gap: 0;

        background: rgba(8, 8, 8, 0.98);

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.4s ease;
    }

    .navbar nav.active {
        max-height: 400px;
    }

    .navbar nav a {
        padding: 18px 7vw;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .language-switcher {
        display: none;

        position: absolute;
        top: 235px;
        left: 0;

        width: 100%;

        padding: 20px 7vw 25px;

        background: rgba(8, 8, 8, 0.98);

        justify-content: center;
    }

    .language-switcher.active {
        display: flex;
    }

    .hero {
        padding: 120px 7vw 70px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;

        width: 100%;
        max-width: none;

        margin-top: 50px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 90px 7vw;
    }

    .gallery {
        padding: 90px 7vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
}


/* MOBILY */
@media (max-width: 600px) {

    .navbar {
        height: 65px;
    }

    .logo {
        font-size: 18px;
    }

    .navbar nav {
        top: 65px;
    }

    .language-switcher {
        top: 225px;
    }

    .hero {
        padding: 105px 6vw 60px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -2px;
    }

    .hero-small-title {
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 16px;
    }

   .hero {
    min-height: 760px;
}

.hero-image {
    position: absolute;

    right: 4vw;
    top: 5000px;

    width: 40vw;
    max-width: none;

    margin-top: 0;

    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 390px;

    aspect-ratio: auto;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 58%;
}

    .about,
    .contact {
        padding: 70px 6vw;
    }

    .gallery {
        padding: 70px 6vw;
    }

    .section-heading h2 {
        font-size: clamp(38px, 11vw, 55px);
        letter-spacing: -2px;
    }

    .about-text p {
        font-size: 16px;
    }

    .gallery-item img {
        aspect-ratio: 1 / 1;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-item strong {
        font-size: 16px;
        word-break: break-word;
    }
}