/*

.main-contact {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media only screen and (min-width: 1025px) {
    .main-contact {
        height: 100vh;
        overflow: hidden;
    }
    
    .contact-title {
        position: fixed;
        bottom: 0;
        left: 2.5%;
        width: auto;
        display: flex;
        justify-content: flex-start;
        z-index: 10;
    }
    
    .contact-name {
        writing-mode: vertical-rl;
             transform: rotate(180deg) translateY(-0.08em);
        font-family: 'DM Sans', sans-serif;
        font-size: 230px;
        font-weight: 400;
        color: #009dfb;
        line-height: 0.8;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    
    .contact-challenge {
        position: absolute;
        bottom: 120px;
        left: 180px;
        transform: rotate(-10deg);
        font-family: 'Just Another Hand', cursive;
        font-size: 120px;
        color: #FB7600;
        font-weight: 400;
        z-index: 2;
        white-space: nowrap;
    }
    
    .contact-data {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        margin-left: auto;
        margin-bottom: 200Px;
    }
    
    .contact-data-image {
        width: 100%;
        height: auto;
        position: relative;
        margin: 50px 0;
    }
    
    .contact-data-image > img {
        width: 100%;
        position: relative;
    }
    
    .contact-data-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-data-text a {
        flex: 1 1 350px;
        max-width: 450px;
        text-align: left;
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
        font-size: 42px;
        line-height: 1.1;
        text-decoration: none;
        color: black;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .contact-name {
        font-size: 180px;
    }
    .contact-challenge {
        font-size: 100px;
        bottom: 100px;
        left: 150px;
    }
    .contact-data-text a {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1500px) {
    .contact-name {
        font-size: 200px;
    }
    .contact-challenge {
        font-size: 110px;
        bottom: 110px;
        left: 160px;
    }
    .contact-data-text a {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1920px) {
    .contact-name {
        font-size: 230px;
    }
    .contact-challenge {
        font-size: 138px;
        bottom: 120px;
        left: 2.5%;
    }
}

@media only screen and (min-width: 1921px) {
    .contact-name {
        font-size: 280px;
    }
    .contact-challenge {
        font-size: 140px;
        bottom: 150px;
        left: 2.5%;
    }
    .contact-data-text a {
        font-size: 48px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-contact {
        flex-direction: column;
        padding: 0;
        position: relative;
    }
    
    .contact-title {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 50%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        background: white;
        z-index: 9;
        height: auto;
    }
    
    .contact-name {
        writing-mode: horizontal-tb;
        transform: translateY(0.16em) translateX(-9px);
        font-family: 'DM Sans', sans-serif;
        font-size: 126px;
        font-weight: 400;
        color: #009dfb;
        line-height: 1;
        margin: 0;
        width: 100%;
        display: none !important;
    }
    
    .contact-challenge {
        position: relative;
        top: 190px;
        left: 160px;
        transform: rotate(-5deg);
        font-family: 'Just Another Hand', cursive;
        font-size: 74Px;
        color: #FB7600;
        font-weight: 400;
        margin-top: 10px;
    }
    
    .contact-data {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 600Px;
    }
    
.contact-data-image {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin: 0;
        z-index: 8;
        transform: translateX(-8px);
    }
    
    .contact-data-image > img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .contact-data-text {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: calc(100% - 2.5%);
        margin-top: 250px;
        margin-left: 5%;
    }

    .contact-small {
    font-size: 35px !important;
    font-weight: 300;
    display: block;
    margin-bottom: 2px !important;
}
    
    .contact-data-text a {
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.2;
        text-decoration: none;
        color: black;
        text-align: left;
    }
}



@media only screen and (max-width: 480px) {
    .contact-name {
        font-size: 100px;
    }
    .contact-challenge {
        font-size: 60px;
        top: 155px;
        left: 100px;
    }
    .contact-data-text a {
        font-size: 28px;
    }
    .contact-data-image {
        height: 250px;
    }
}

.contact-small {
    font-size: 22px;
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

.contact-data-text a:hover {
    color: #009dfb;
    transition: color 0.3s ease;
}

.contact-data-image > img.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .contact-data-image > img.pc {
        display: none;
    }
    .contact-data-image > img.mobile {
     display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        left: 0 !important;
        right: unset !important;
        width: 100% !important;
        height: auto;
    }
}


@media (max-width: 768px) {
    .contact-title {
      display: none !important;
      width: 0 !important;
        height: 0 !important;
    }

    .contact-data-image{
       left: 0 !important;
        right: unset !important;
        width: 100% !important;
        height: auto;
        transform: translate(-3px, 1Px);
    }
}



@media (max-width: 480px) {
        .contact-small {
        font-size: 20Px !important;
    }
}



@media (min-width: 851px) and (max-width: 1025Px){
    .contact-data-text {
        margin-top: 50PX;
    }
}


@media(min-width: 480px) and (max-width: 768px) {
      .contact-data-image {
        transform: translate(-5px, 1Px) !important;
    }
}



*/




/* =================================================
   RESET / ZÁKLAD
================================================= */

.main-contact {
    box-sizing: border-box;
}

.main-contact img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =================================================
   MAIN WRAPPER
================================================= */

.main-contact {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: clip;
    overflow-y: hidden;
    padding: clamp(1rem, 4vw, 4rem);
}

/* =================================================
   TITLE
================================================= */

.contact-title {
    position: absolute;
    bottom: 0;
    left: 2.5%;
    display: flex;
    align-items: flex-end;
    gap: clamp(1rem, 3vw, 3rem);
    z-index: 10;
    margin-bottom: -18px;
}

.contact-name {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 400;
    color: #009dfb;
    line-height: 0.85;
    margin: 0;
}

.contact-challenge {
    font-family: 'Just Another Hand', cursive;
    font-size: clamp(3rem, 7vw, 8rem);
    color: #FB7600;
    transform: rotate(-10deg);
    white-space: nowrap;
}

/* =================================================
   CONTENT
================================================= */

.contact-data {
    width: min(70%, 1200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-bottom: 0;
}

/* =================================================
   IMAGE
================================================= */

.contact-data-image {
    width: 100%;
    margin: clamp(2rem, 6vh, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.contact-data-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* výchozí stav – DESKTOP */
.contact-data-image img.mobile {
    display: none;
}

.contact-data-image img.pc {
    display: block;
}

/* =================================================
   TEXT
================================================= */

.contact-data-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.contact-data-text a {
    flex: unset !important;
    max-width: 450px;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2.3rem);
    line-height: 1.15;
    text-decoration: none;
    color: #000;
}

.contact-small {
    display: block;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 0.2em;
}

.contact-data-text a:hover {
    color: #009dfb;
    transition: color 0.3s ease;
}

/* =================================================
   MOBILE / TABLET
================================================= */

@media (max-width: 1024px) {

    .main-contact {
        flex-direction: column;
        padding: clamp(1rem, 6vw, 3rem);
    }

    .contact-title {
        display: none;
    }

    .contact-data {
        width: 100%;
        margin-left: 0;
        margin-bottom: clamp(6rem, 20vh, 16rem);
    }
    .contact-data-image {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        height: auto !important;
        margin: 0;
        margin-left: -5Px !important;
        margin-bottom: -5px !important;
    }

    .contact-data-image img.pc {
        display: none;
    }

    .contact-data-image img.mobile {
        display: block;
    }

    .contact-data-text {
        align-items: flex-start;
        margin-top: 0;
    }

    .contact-data-text a {
        font-size: clamp(1.8rem, 6vw, 3.4rem);
    }

    .contact-small {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
}

/* =================================================
   SMALL MOBILE
================================================= */

@media (max-width: 480px) {

    .contact-data-text {
        gap: 1rem;
    }

    .contact-data-image img {
        max-height: 45vh;
    }
}



@media (min-width: 1921px) {
    .contact-name {
        font-size: 280px;
    }
    .contact-challenge {
        font-size: 140px;
        bottom: 150px;
        left: 2.5%;
    }
    .contact-data-text a {
        font-size: 48px;
    }
}


@media (max-width: 384px) {

      .main-contact {
        flex-direction: column;
        padding: clamp(1rem, 6vw, 3rem);
        justify-content: flex-start;
        padding-top: 80Px;
    }
}



@media (min-width: 768px) and (max-width: 1024px) {
    .contact-data {
        margin-bottom: 90%;
    }

        .contact-data-image {
        margin-left: -28Px !important;
        margin-bottom: -6px !important;
    }
}


@media (min-width: 431px) and (max-width: 768px) {
         .main-contact {
        flex-direction: column;
        padding: clamp(1rem, 6vw, 3rem);
        justify-content: flex-start !important;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .contact-data-text a {
        font-size: 30px !important;
    }

        .contact-data img {
        margin-top: 0 !important;
    }

        .contact-data-image {
        margin-left: -8px !important;
        margin-bottom: -6px !important;
    }

        .contact-data-text {
        align-items: flex-start;
        margin-top: 40% !important;
    }

        .contact-small {
        font-size: 18px;
    }
}



@media (min-width: 2561px){
    .contact-name {
    font-size: 400px;
    margin-bottom: -20px;
}

.contact-challenge {
    font-size: 240px;
    bottom: 0;
    left: 43.5%;
    top: 30%;
}

.contact-data {
    width: min(70%, 2561px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-bottom: 0;
}

.contact-data-text a {
    font-size: 75px;
      max-width: 100% !important; 
      margin-top: 40px !important;
}


.contact-small {
    display: block;
    font-size: 45px;
    font-weight: 300;
    margin-bottom: 0.2em;
}
}