/* MYNARO MEDIA – homepage (samostatná stránka, vlastní branding) */
/* barvy, fonty a obecné styly (:root, body) viz style.css */

.media-page {
    overflow-x: hidden;
}

.title-divider {
    color: var(--mynaro-text);
}

.title-divider .line {
    width: 44px;
    height: 1px;
    background: var(--mynaro-gold);
    display: inline-block;
}

.title-divider h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .18em;
    margin: 0;
}

/* ---------- header ---------- */

.media-header {
    background: var(--mynaro-dark);
    color: #fff;
}

.media-logo {
    text-decoration: none;
    line-height: 1.05;
}

.media-logo-img {
    height: 64px;
    width: auto;
}

@media (max-width: 767.98px) {
    .media-header .container {
        flex-wrap: nowrap;
        gap: .75rem;
    }

    .media-logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .media-logo-img {
        height: 40px;
        max-width: 100%;
    }

    .media-header .btn-gold {
        flex-shrink: 1;
        white-space: normal;
        text-align: center;
        padding: .55rem .9rem;
        font-size: .78rem;
    }
}

.media-nav .nav-link {
    color: rgba(255, 255, 255, .8);
    font-size: .92rem;
    padding: .5rem .9rem;
    transition: color .2s;
}

.media-nav .nav-link:hover {
    color: var(--mynaro-gold);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--mynaro-gold);
    color: var(--mynaro-dark);
    border: none;
    border-radius: var(--btn-radius);
    padding: .65rem 1.5rem;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-gold:hover {
    opacity: .85;
    color: var(--mynaro-dark);
}

.link-gold {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    color: var(--mynaro-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
}

.link-gold:hover {
    color: #fff;
}

.header-toggler {
    background: none;
    border: none;
    color: #fff;
    line-height: 0;
    padding: .25rem;
}

.header-toggler svg {
    width: 24px;
    height: 24px;
}

.media-nav-collapse {
    width: 100%;
}

@media (min-width: 992px) {
    .media-nav-collapse {
        width: auto;
    }
}

.media-dropdown {
    position: relative;
}

.media-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .media-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
        padding: .5rem 0;
        margin-top: .5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .15s ease, transform .15s ease, visibility .15s;
        z-index: 1000;
    }

    .media-dropdown-menu a {
        display: block;
        padding: .55rem 1.25rem;
        color: var(--mynaro-text);
        text-decoration: none;
        font-size: .9rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .media-dropdown-menu a:hover {
        color: var(--mynaro-gold);
        background: rgba(0, 0, 0, .04);
    }

    .media-dropdown:hover .media-dropdown-menu,
    .media-dropdown:focus-within .media-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .media-dropdown-menu {
        display: none;
        padding-left: 1rem;
        margin-top: .25rem;
    }

    .media-dropdown.show .media-dropdown-menu {
        display: block;
    }

    .media-dropdown-menu a {
        display: block;
        padding: .4rem 0;
        color: rgba(255, 255, 255, .7);
        text-decoration: none;
        font-size: .85rem;
        font-weight: 600;
    }

    .media-dropdown-menu a:hover {
        color: var(--mynaro-gold);
    }
}

/* ---------- hero ---------- */

.hero-media {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    padding: 6rem 0 3.5rem;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-media.hero-no-photo {
    background: var(--mynaro-dark);
    min-height: 0;
    padding: 4.5rem 0 3.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        var(--mynaro-dark) 0%,
        rgba(22, 20, 15, .88) 22%,
        rgba(22, 20, 15, .5) 45%,
        rgba(22, 20, 15, .15) 70%,
        rgba(22, 20, 15, 0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .hero-media {
        display: block;
        min-height: 0;
        background: var(--mynaro-dark);
        padding: 0 0 2.5rem;
    }

    .hero-photo {
        position: static;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        padding-top: 2rem;
    }
}

.hero-eyebrow {
    color: var(--mynaro-gold);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.15;
    text-transform: uppercase;
    margin: .5rem 0 1.25rem;
}

.hero-title .text-gold {
    color: var(--mynaro-gold);
}

.hero-lead {
    color: rgba(255, 255, 255, .75);
    font-size: 1.02rem;
    max-width: 480px;
}

.hero-badges {
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
}

.hero-badges .badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badges .badge-icon svg {
    width: 13px;
    height: 13px;
    color: var(--mynaro-gold);
}

/* ---------- co umíme ---------- */

.services-section {
    padding: 4.5rem 0;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    overflow: hidden;
    height: 100%;
    padding-bottom: 1.75rem;
}

.service-photo-wrap {
    position: relative;
}

.service-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.service-icon-circle {
    position: absolute;
    left: 1.5rem;
    bottom: -26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--mynaro-gold);
}

.service-body {
    padding: 2.5rem 1.5rem 0;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .88rem;
    color: var(--mynaro-text-muted);
}

.service-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: .5rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mynaro-gold);
}

/* ---------- naše projekty ---------- */

.projects-section {
    padding: 0 0 4.5rem;
}

.project-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    color: #fff;
}

.project-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68%;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .78) 35%, rgba(0, 0, 0, .35) 70%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.project-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.75rem 1.5rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: .6rem;
}

.project-text {
    font-size: .87rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.1rem;
}

/* ---------- pro koho tvoříme ---------- */

.audience-section {
    padding: 0 0 4.5rem;
}

.audience-item {
    text-align: center;
    padding: 0 .5rem;
}

.audience-item svg {
    width: 34px;
    height: 34px;
    color: var(--mynaro-gold);
    margin-bottom: .75rem;
}

.audience-item span {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .audience-row {
        flex-wrap: nowrap;
    }

    .audience-row > .col {
        flex: 0 0 auto;
        width: calc(100% / 7);
        padding-left: .35rem;
        padding-right: .35rem;
    }

    .audience-item {
        padding: 0;
    }

    .audience-item svg {
        width: 28px;
        height: 28px;
    }
}

/* ---------- spolupráce na míru ---------- */

.collab-section {
    background: var(--mynaro-dark);
    color: #fff;
    padding: 4.5rem 0;
}

.collab-title {
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.collab-title .text-gold {
    color: var(--mynaro-gold);
}

.collab-text {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

.collab-feature {
    margin-bottom: 2rem;
}

.collab-feature svg {
    width: 26px;
    height: 26px;
    color: var(--mynaro-gold);
    margin-bottom: .75rem;
}

.collab-feature h3 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.collab-feature p {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    margin-bottom: .6rem;
}

.collab-photo-wrap {
    position: relative;
    height: 100%;
    max-height: 420px;
    border-radius: 14px;
    overflow: hidden;
}

.collab-photo-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68%;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .78) 35%, rgba(0, 0, 0, .35) 70%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.collab-photo {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
}

/* ---------- reference ---------- */

.reference-section {
    padding: 4.5rem 0;
}

.reference-track {
    position: relative;
}

.reference-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .25rem 0;
    cursor: grab;
}

.reference-scroller::-webkit-scrollbar {
    display: none;
}

.reference-scroller.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.reference-scroller.is-dragging .reference-logo {
    pointer-events: none;
}

.reference-logo {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 200px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .65rem;
    text-align: left;
    padding: .5rem .85rem;
    font-weight: 700;
    font-size: .92rem;
    color: var(--mynaro-text);
}

.reference-logo-placeholder {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, .25);
}

.reference-logo-placeholder svg {
    width: 16px;
    height: 16px;
}

.reference-logo-text {
    line-height: 1.3;
}

.reference-logo-img-card {
    justify-content: center;
    padding: .75rem 1.25rem;
}

.reference-logo-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .15);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mynaro-text);
    cursor: pointer;
    transition: background-color .2s, color .2s;
}

.reference-nav:hover {
    background: var(--mynaro-gold);
    color: var(--mynaro-dark);
    border-color: var(--mynaro-gold);
}

.reference-nav svg {
    width: 16px;
    height: 16px;
}

.reference-dots {
    gap: .4rem;
}

.reference-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .2);
    display: inline-block;
}

.reference-dots span.active {
    background: var(--mynaro-gold);
    width: 18px;
    border-radius: 3px;
}

/* ---------- footer ---------- */

.media-footer {
    background: var(--mynaro-dark);
    color: rgba(255, 255, 255, 1);
    padding: 3.5rem 0;
    font-size: .9rem;
}

.media-footer h6 {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.media-footer a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .8rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--mynaro-gold);
    flex-shrink: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .2s;
}

.footer-social a:hover {
    opacity: .7;
}

.footer-social svg {
    width: 26px;
    height: 26px;
}

.footer-brand-big {
    color: var(--mynaro-gold);
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 1.2rem;
    line-height: 1.1;
}

.footer-tagline {
    color: var(--mynaro-gold);
    font-style: italic;
    font-size: .9rem;
    opacity: .8;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    margin-bottom: .9rem;
}

.footer-about-link {
    display: inline-block;
    color: var(--mynaro-gold);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-about-link:hover {
    color: #fff;
}

/* ---------- kontaktní formulář (modal) ---------- */

.modal-backdrop.show {
    opacity: 1;
    background-color: rgba(22, 20, 15, .55);
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .modal-backdrop.show {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.contact-modal-content {
    background: #fff;
    border: none;
    border-radius: 18px;
    padding: 1.75rem 1.75rem .75rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}

.contact-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--mynaro-text);
    margin: 0;
}

.contact-modal-subtitle {
    color: var(--mynaro-text-muted);
    font-size: .92rem;
}

.contact-optional {
    color: var(--mynaro-text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

#contactForm .form-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--mynaro-text);
    margin-bottom: .4rem;
}

#contactForm .form-control {
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: var(--btn-radius);
    padding: .65rem .9rem;
    font-size: .92rem;
}

#contactForm .form-control:focus {
    border-color: var(--mynaro-gold);
    box-shadow: 0 0 0 .2rem rgba(201, 164, 102, .25);
}

#contactForm .btn-gold {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.contact-form-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-banner-icon svg {
    width: 18px;
    height: 18px;
}

.contact-modal-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0 1.5rem;
}

.contact-modal-result-text {
    margin: 0;
    font-size: .98rem;
    font-weight: 600;
    color: var(--mynaro-dark);
}

.contact-modal-result-success .contact-form-banner-icon {
    background: var(--mynaro-gold);
    color: var(--mynaro-dark);
}

.contact-modal-result-error .contact-form-banner-icon {
    background: #d9534f;
    color: #fff;
}

/* ---------- partneři ---------- */

.partners-hero,
.contact-hero {
    background: var(--mynaro-dark);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
}

.partners-title,
.contact-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin: .5rem 0 1rem;
}

.partners-lead,
.contact-lead {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.partners-list-section {
    padding: 4.5rem 0;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    height: 100%;
    min-height: 100px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 1.25rem;
    font-weight: 700;
    font-size: .92rem;
    color: var(--mynaro-text);
}

/* ---------- statický text / článek ---------- */

.article-hero {
    min-height: 440px;
}

@media (max-width: 767.98px) {
    .article-hero {
        min-height: 0;
    }
}

.article-section {
    padding: 4rem 0 5rem;
}

.article-back {
    display: inline-block;
    color: var(--mynaro-text-muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}

.article-back:hover {
    color: var(--mynaro-gold);
}

.article-body {
    max-width: 740px;
    margin: 2rem auto 0;
    color: var(--mynaro-text);
}

.article-lead {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.article-body p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--mynaro-text);
    margin-bottom: 1.4rem;
}

.article-body h2 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 2.75rem 0 1.1rem;
}

.article-image {
    display: block;
    width: 100%;
    border-radius: 14px;
    margin: 2.25rem 0;
}

.article-quote {
    border-left: 3px solid var(--mynaro-gold);
    margin: 2.5rem 0;
    padding: .25rem 0 .25rem 1.5rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--mynaro-text);
}

.article-cta {
    background: var(--mynaro-dark);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    max-width: 740px;
    margin: 3.5rem auto 0;
}

.article-cta-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.article-cta-text {
    color: rgba(255, 255, 255, .75);
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

/* ---------- video dlaždice ---------- */

.video-tile {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.video-tile-thumb {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .9rem;
    background: var(--mynaro-dark);
}

.video-tile-thumb iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-tile-title {
    display: block;
    font-weight: 700;
    font-size: .92rem;
    color: var(--mynaro-text);
    transition: color .2s;
}

.video-tile:hover .video-tile-title {
    color: var(--mynaro-gold);
}

/* ---------- kontakt ---------- */

.contact-people-section {
    padding: 4.5rem 0;
}

.contact-people-section .row {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-person-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    height: 100%;
}

.contact-person-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.contact-person-body {
    padding: 1.75rem;
}

.contact-person-name {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 1.1rem;
}

.contact-person-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-person-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}

.contact-person-list li:last-child {
    margin-bottom: 0;
}

.contact-person-list svg {
    width: 20px;
    height: 20px;
    color: var(--mynaro-gold);
    flex-shrink: 0;
}

.contact-person-list a {
    color: var(--mynaro-text);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
}

.contact-person-list a:hover {
    color: var(--mynaro-gold);
}

