/* ========================================
   itsprinted.cz
   DARK / BLUE DESIGN
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #050505;
    color: #ffffff;
    line-height: 1.6;
}


/* ========================================
   NAVIGACE
   ======================================== */

.navbar {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: #050505;
    border-bottom: 1px solid #151515;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Logo */

.logo {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
}

.logo span {
    color: #168cff;
    font-weight: 400;
}


/* Menu */

nav {
    display: flex;
    gap: 35px;
}

nav a {
    position: relative;

    text-decoration: none;
    color: #999999;

    font-size: 15px;
    font-weight: 500;

    transition: 0.25s ease;
}

nav a:hover,
nav a.active {
    color: #ffffff;
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #168cff;

    transition: 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}


/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    padding: 80px 7%;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(22, 140, 255, 0.13),
            transparent 35%
        );
}

.hero-content {
    max-width: 850px;
}


/* Malý nadpis */

.small-title {
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #168cff;
}


/* Hlavní nadpis */

.hero h1 {
    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 700;

    margin-bottom: 35px;
}

.hero h1 span {
    color: #168cff;
}


/* Popis */

.description {
    max-width: 600px;

    font-size: 19px;

    color: #999999;

    margin-bottom: 40px;
}


/* ========================================
   TLAČÍTKA
   ======================================== */

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.25s ease;
}


/* Modré tlačítko */

.button.primary {
    background: #168cff;
    color: #ffffff;

    box-shadow: 0 0 25px rgba(22, 140, 255, 0.15);
}

.button.primary:hover {
    background: #3da3ff;

    transform: translateY(-3px);

    box-shadow: 0 8px 30px rgba(22, 140, 255, 0.25);
}


/* Obrysové tlačítko */

.button.secondary {
    background: transparent;

    color: #ffffff;

    border: 1px solid #333333;
}

.button.secondary:hover {
    border-color: #168cff;

    color: #168cff;

    transform: translateY(-3px);
}


/* ========================================
   INTRO SEKCE
   ======================================== */

.intro {
    padding: 130px 7%;

    max-width: 1000px;
}


.section-label {
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #168cff;
}


.intro h2 {
    font-size: clamp(40px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.intro h2 span {
    color: #168cff;
}


.intro > p:last-child {
    max-width: 650px;

    font-size: 18px;

    color: #888888;
}


/* ========================================
   PATIČKA
   ======================================== */

footer {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 30px 7%;

    border-top: 1px solid #151515;

    color: #666666;

    font-size: 13px;
}


/* ========================================
   MOBIL
   ======================================== */

@media (max-width: 700px) {

    .navbar {
        height: auto;

        padding: 20px 6%;

        flex-direction: column;

        gap: 20px;
    }

    nav {
        gap: 20px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .hero {
        min-height: calc(100vh - 130px);

        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .description {
        font-size: 17px;
    }

    .intro {
        padding: 90px 6%;
    }

    .intro h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    footer {
        padding: 25px 6%;

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }
}
/* ========================================
   OBJEDNÁVKA
   ======================================== */

.order-page {
    padding: 100px 7%;
    max-width: 1200px;
    margin: auto;
}


/* HLAVIČKA */

.order-header {
    max-width: 800px;
    margin-bottom: 70px;
}

.order-header h1 {
    font-size: clamp(55px, 8vw, 95px);
    line-height: 0.98;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.order-header h1 span {
    color: #168cff;
}

.order-header > p:last-child {
    color: #888;
    font-size: 18px;
    max-width: 600px;
}


/* KARTY */

.order-card {
    background: #0b0b0b;
    border: 1px solid #1c1c1c;
    border-radius: 14px;

    padding: 35px;

    margin-bottom: 20px;

    transition: border-color 0.25s ease;
}

.order-card:hover {
    border-color: #292929;
}

.order-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.card-description {
    color: #777;
    margin-bottom: 25px;
}


/* UPLOAD */

.upload-box {
    min-height: 220px;

    border: 2px dashed #292929;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    cursor: pointer;

    transition: 0.25s ease;
}

.upload-box:hover {
    border-color: #168cff;
    background: rgba(22, 140, 255, 0.04);
}

.upload-box input {
    display: none;
}

.upload-icon {
    font-size: 40px;
    color: #168cff;
    margin-bottom: 10px;
}

.upload-box strong {
    font-size: 16px;
}

.upload-box small {
    color: #666;
    margin-top: 5px;
}


/* FORM GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: #aaa;
    font-size: 14px;
}

.input-group input,
.input-group select,
.order-card textarea {
    width: 100%;

    background: #050505;

    border: 1px solid #292929;

    border-radius: 8px;

    color: #fff;

    padding: 13px 15px;

    font-family: "Segoe UI", Arial, sans-serif;

    outline: none;

    transition: 0.2s ease;
}

.input-group input:focus,
.input-group select:focus,
.order-card textarea:focus {
    border-color: #168cff;

    box-shadow: 0 0 0 3px rgba(22, 140, 255, 0.08);
}

.input-group select {
    cursor: pointer;
}

.order-card textarea {
    min-height: 140px;

    resize: vertical;
}


/* DOPRAVA */

.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    background: #050505;

    border: 1px solid #292929;
    border-radius: 10px;

    cursor: pointer;

    transition: 0.2s ease;
}

.delivery-option:hover {
    border-color: #168cff;
}

.delivery-option input {
    accent-color: #168cff;
}

.delivery-option div {
    display: flex;
    flex-direction: column;
}

.delivery-option span {
    color: #666;
    font-size: 13px;
}


/* ZÁSILKOVNA */

.zasilkovna-placeholder {
    margin-top: 20px;

    padding: 20px;

    border-radius: 10px;

    background: rgba(22, 140, 255, 0.05);

    border: 1px solid rgba(22, 140, 255, 0.2);
}

.zasilkovna-placeholder strong {
    display: block;
    margin-bottom: 5px;
}

.zasilkovna-placeholder p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.zasilkovna-placeholder button {
    background: transparent;

    border: 1px solid #168cff;

    color: #168cff;

    padding: 10px 16px;

    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;

    transition: 0.2s ease;
}

.zasilkovna-placeholder button:hover {
    background: #168cff;
    color: white;
}


/* ODESLÁNÍ */

.order-submit {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 30px;

    padding: 30px;

    border-top: 1px solid #1c1c1c;
}

.order-submit p {
    color: #777;
    font-size: 14px;
    margin-top: 4px;
}


/* MOBIL */

@media (max-width: 700px) {

    .order-page {
        padding: 70px 6%;
    }

    .order-header h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .order-card {
        padding: 25px;
    }

    .form-grid,
    .delivery-options {
        grid-template-columns: 1fr;
    }

    .order-submit {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-submit .button {
        width: 100%;
        text-align: center;
    }
}/* ========================================
   OBCHODNÍ PODMÍNKY
   ======================================== */

.terms-page {
    max-width: 1000px;
    margin: auto;
    padding: 100px 7%;
}

.terms-header {
    margin-bottom: 70px;
}

.terms-header h1 {
    font-size: clamp(55px, 8vw, 90px);
    line-height: 0.98;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.terms-header h1 span {
    color: #168cff;
}

.terms-header > p:last-child {
    color: #888;
    font-size: 18px;
    max-width: 600px;
}

.terms-card {
    padding: 35px;

    background: #0b0b0b;

    border: 1px solid #1c1c1c;

    border-radius: 14px;

    margin-bottom: 18px;
}

.terms-card h2 {
    font-size: 21px;
    margin-bottom: 18px;
}

.terms-card p {
    color: #888;
    font-size: 15px;
    margin-bottom: 15px;
}

.terms-card p:last-child {
    margin-bottom: 0;
}

.terms-card:hover {
    border-color: #292929;
}/* ========================================
   SLUŽBY
   ======================================== */

.services-page {
    max-width: 1200px;
    margin: auto;
    padding: 100px 7%;
}


/* HLAVIČKA */

.services-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: clamp(55px, 8vw, 95px);
    line-height: 0.98;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.services-header h1 span {
    color: #168cff;
}

.services-header > p:last-child {
    max-width: 620px;
    color: #888;
    font-size: 18px;
}


/* GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* KARTA */

.service-card {
    position: relative;

    padding: 35px;

    background: #0b0b0b;

    border: 1px solid #1c1c1c;

    border-radius: 15px;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #168cff;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(22, 140, 255, 0.05);
}


/* ZVÝRAZNĚNÁ KARTA */

.service-card.featured {
    border-color: rgba(22, 140, 255, 0.35);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22, 140, 255, 0.08),
            transparent 45%
        ),
        #0b0b0b;
}


/* ČÍSLO */

.service-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #333;

    font-size: 14px;
    font-weight: 600;
}


/* IKONA */

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 12px;

    background: rgba(22, 140, 255, 0.08);

    border: 1px solid rgba(22, 140, 255, 0.2);

    color: #168cff;

    font-size: 25px;
}


/* TEXT */

.service-card h2 {
    font-size: 28px;

    margin-bottom: 15px;
}

.service-card p {
    color: #888;

    font-size: 15px;

    max-width: 500px;

    margin-bottom: 25px;
}


/* SEZNAM */

.service-card ul {
    list-style: none;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}

.service-card li {
    padding: 6px 10px;

    border-radius: 6px;

    background: #151515;

    color: #aaa;

    font-size: 12px;
}


/* ODKAZ */

.service-link {
    margin-top: auto;

    color: #168cff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s ease;
}

.service-link:hover {
    color: #5bb2ff;

    transform: translateX(4px);
}


/* CTA */

.services-cta {
    margin-top: 120px;

    padding: 80px 0;

    border-top: 1px solid #1c1c1c;

    max-width: 800px;
}

.services-cta h2 {
    font-size: clamp(45px, 6vw, 70px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.services-cta h2 span {
    color: #168cff;
}

.services-cta > p:not(.section-label) {
    color: #888;

    max-width: 550px;

    margin-bottom: 30px;
}


/* MOBIL */

@media (max-width: 750px) {

    .services-page {
        padding: 70px 6%;
    }

    .services-header h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .services-cta {
        margin-top: 80px;
    }

}/* ========================================
   KONTAKT
   ======================================== */

.contact-page {
    max-width: 1200px;
    margin: auto;
    padding: 100px 7%;
}


/* HLAVIČKA */

.contact-header {
    max-width: 850px;
    margin-bottom: 90px;
}

.contact-header h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.contact-header h1 span {
    color: #168cff;
}

.contact-header > p:last-child {
    max-width: 620px;
    color: #888;
    font-size: 18px;
}


/* LAYOUT */

.contact-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}


/* INFORMACE */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #1c1c1c;
}

.contact-label {
    display: block;

    margin-bottom: 10px;

    color: #168cff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-item a {
    color: #fff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: 0.2s ease;
}

.contact-item a:hover {
    color: #168cff;
}

.contact-item p {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}


/* FORMULÁŘ */

.contact-form {
    padding: 35px;

    background: #0b0b0b;

    border: 1px solid #1c1c1c;

    border-radius: 15px;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    color: #aaa;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    background: #050505;

    border: 1px solid #292929;

    border-radius: 8px;

    color: #fff;

    padding: 14px 15px;

    font-family: "Segoe UI", Arial, sans-serif;

    outline: none;

    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #168cff;

    box-shadow:
        0 0 0 3px rgba(22, 140, 255, 0.08);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}


/* CHECKBOX */

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;
}

.contact-checkbox input {
    width: auto;

    margin-top: 4px;

    accent-color: #168cff;
}

.contact-checkbox span {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}


/* TLAČÍTKO */

.contact-submit {
    border: none;

    cursor: pointer;

    font-family: "Segoe UI", Arial, sans-serif;

    align-self: flex-start;
}


/* SPODNÍ CTA */

.contact-cta {
    margin-top: 130px;

    padding-top: 70px;

    border-top: 1px solid #1c1c1c;
}

.contact-cta > span {
    color: #168cff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.contact-cta h2 {
    margin-top: 20px;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -4px;
}

.contact-cta h2 span {
    color: #168cff;
}


/* MOBIL */

@media (max-width: 800px) {

    .contact-page {
        padding: 70px 6%;
    }

    .contact-header h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-submit {
        width: 100%;
        text-align: center;
    }

    .contact-cta {
        margin-top: 80px;
    }
}