:root {
    --bg1: #eef7ff;
    --bg2: #fff8ec;
    --card: rgba(255,255,255,0.92);
    --ink: #242424;
    --soft: #68707a;
    --line: #ded6c8;
    --accent: #f1c45b;
    --accent2: #cdebd6;
    --shadow: 0 14px 34px rgba(37, 48, 61, 0.13);
    --radius: 28px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, var(--bg2), transparent 35%),
        linear-gradient(180deg, var(--bg1), #ffffff 55%, #f7f7f7);
}

.page {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto;
    padding: 22px 0 26px;
}

.bubble {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin: 0 0 22px;
    overflow: hidden;
}

.hero { text-align: center; }
.logo {
    display: block;
    width: min(330px, 86%);
    height: auto;
    margin: 0 auto 4px;
}

h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.15em;
    font-size: clamp(30px, 7vw, 56px);
    line-height: 1;
}

.since {
    margin: 8px 0 18px;
    letter-spacing: 0.5em;
    color: var(--soft);
    font-size: 12px;
}

.contact-card {
    background: linear-gradient(180deg, #fffdf8, #f3fbff);
    border: 1px solid #ece6da;
    border-radius: 22px;
    padding: 18px;
    max-width: 720px;
    margin: 0 auto;
}
.contact-card h2 {
    margin: 14px 0 8px;
    font-size: 19px;
    letter-spacing: 0.05em;
}
.contact-card p { margin: 7px 0; }
.contact-card a {
    font-size: 24px;
    font-weight: 700;
}
.address { font-size: 22px; line-height: 1.45; font-weight: 700; }
a { color: #1f1f1f; text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; }

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    text-decoration: none;
}
.contact-link span:not(.link-icon) {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}
.contact-link:hover {
    background: rgba(241, 196, 91, 0.16);
}
.contact-link:hover span:not(.link-icon) {
    text-decoration-style: solid;
}
.link-icon {
    display: inline-block;
    min-width: 1.35em;
    text-align: center;
    font-size: 0.95em;
}
.contact-hint {
    margin: 14px auto 0 !important;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}
@media (max-width: 560px) {
    .contact-link {
        padding: 6px 8px;
        gap: 6px;
    }
    .contact-hint {
        font-size: 13px;
        line-height: 1.35;
    }
}

.price-title {
    margin: 0 0 18px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 10vw, 72px);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.price-cell {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fffdf9);
}
.price-cell:last-child { border-bottom: 0; }
.price-cell h3 {
    margin: 0 0 14px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 7vw, 37px);
    font-weight: 400;
    line-height: 1.12;
}
.row {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: baseline;
    font-size: clamp(18px, 4.9vw, 24px);
    line-height: 1.42;
    padding: 1px 0;
}
.row span { min-width: 0; }
.row b { white-space: nowrap; font-weight: 400; }
.small-note {
    margin: 10px 0 0;
    font-size: clamp(15px, 4vw, 18px);
    color: #444;
}
.mini-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.upload-box {
    text-align: center;
    background: linear-gradient(180deg, #ecfff2, #ffffff);
}
.upload-icon { font-size: 52px; }
.upload-box h2 {
    margin: 8px 0;
    font-size: clamp(28px, 7vw, 43px);
}
.upload-box p {
    max-width: 650px;
    margin: 10px auto;
    font-size: 19px;
    line-height: 1.5;
    color: #4f5a58;
}
.disabled-btn {
    width: min(420px, 100%);
    margin: 18px auto 6px;
    border: 0;
    border-radius: 20px;
    padding: 18px 22px;
    font-size: 23px;
    font-weight: 800;
    color: #fff;
    background: #9bb8a3;
}
.tiny { font-size: 14px !important; color: #737373 !important; }

.footer {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto 20px;
    padding: 18px 10px 28px;
    text-align: center;
    color: #666;
    font-size: 13px;
    line-height: 1.55;
}

@media (min-width: 760px) {
    .page { padding-top: 38px; }
    .bubble { padding: 34px; margin-bottom: 28px; }
    .price-grid { grid-template-columns: 1fr 1fr; }
    .price-cell { border-right: 1px solid var(--line); }
    .price-cell:nth-child(2n) { border-right: 0; }
    .price-cell:nth-last-child(-n+2) { border-bottom: 0; }
    .contact-card { padding: 22px 30px; }
}

/* Otváracie hodiny - jednoduchá samostatná bublina medzi kontaktom a cenníkom */
.hours-box {
    text-align: center;
    background: linear-gradient(180deg, #fff9e8, #ffffff);
}
.section-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 6px;
}
.hours-box h2 {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 8vw, 54px);
    font-weight: 400;
    letter-spacing: 0.04em;
}
.hours-break {
    margin: -8px 0 18px;
    font-size: clamp(18px, 4vw, 23px);
    font-weight: 700;
    color: #7a4a18;
}
.hours-list {
    width: min(560px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,0.78);
    border: 1px solid #eadfc9;
    border-radius: 22px;
    padding: 14px 18px;
}
.hours-row {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 16px;
    align-items: center;
    padding: 9px 0;
    font-size: clamp(19px, 5vw, 27px);
    line-height: 1.25;
    border-bottom: 1px dashed #e5d8be;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row span {
    text-align: left;
    color: #333;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.hours-row strong {
    text-align: left;
    font-weight: 700;
}

@media (max-width: 430px) {
    .hours-list { padding: 12px 14px; }
    .hours-row {
        grid-template-columns: 94px 1fr;
        gap: 10px;
    }
}

/* Detailný rozpis otváracích hodín */
.detailed-hours {
    width: min(700px, 100%);
}
.detailed-hours .hours-row {
    grid-template-columns: 1fr 2.45fr;
    gap: 18px;
}
.hours-row em {
    font-style: normal;
    text-align: left;
    color: #5f5f5f;
    font-size: 0.9em;
}
.hours-row strong {
    white-space: nowrap;
}
.hours-row.closed strong {
    color: #9b2626;
}
.weekend-note {
    background: rgba(255, 246, 238, 0.75);
    margin: 4px -8px -4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 14px;
}

.weekend-simple {
    grid-template-columns: 1fr 2.45fr !important;
    align-items: center;
}
.weekend-simple span {
    grid-column: 1;
}
.weekend-simple strong {
    grid-column: 2;
    text-align: left;
}
@media (max-width: 560px) {
    .hours-list {
        padding: 12px 14px;
    }
    .hours-row {
        font-size: clamp(15px, 3.9vw, 18px);
    }
    .hours-row strong {
        white-space: nowrap;
        font-size: 0.96em;
    }
    .detailed-hours .hours-row {
        grid-template-columns: 0.92fr 1.75fr;
        gap: 10px;
        align-items: center;
    }
    .detailed-hours .hours-row span {
        grid-column: 1;
    }
    .detailed-hours .hours-row strong {
        grid-column: 2;
        padding-left: 0;
        text-align: left;
        line-height: 1.25;
    }
    .weekend-simple {
        grid-template-columns: 0.92fr 1.75fr !important;
        gap: 10px;
        align-items: center;
    }
    .weekend-simple span {
        grid-column: 1;
    }
    .weekend-simple strong {
        grid-column: 2;
        text-align: left;
        white-space: nowrap;
    }
}

@media (max-width: 430px) {
    .hours-box h2 {
        font-size: clamp(30px, 8vw, 46px);
    }
    .hours-break {
        font-size: clamp(16px, 4.6vw, 20px);
    }
    .hours-row {
        font-size: 15px;
    }
    .hours-row span {
        letter-spacing: 0.05em;
    }
    .hours-row strong {
        font-size: 0.94em;
        white-space: nowrap;
    }
    .detailed-hours .hours-row {
        grid-template-columns: 0.86fr 1.9fr;
        gap: 8px;
    }
    .weekend-simple {
        grid-template-columns: 0.86fr 1.9fr !important;
    }
    .weekend-simple strong {
        grid-column: 2;
        text-align: left;
        white-space: nowrap;
    }
}

/* v28 - ikonky bez podtrženia pri hoveri */

.contact-link,
.contact-link:hover,
.contact-link:focus,
.contact-link:active {
    text-decoration: none !important;
}
.contact-link .link-icon,
.contact-link:hover .link-icon,
.contact-link:focus .link-icon,
.contact-link:active .link-icon {
    text-decoration: none !important;
}
.contact-link span:not(.link-icon) {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}
.contact-link:hover span:not(.link-icon),
.contact-link:focus span:not(.link-icon) {
    text-decoration-style: solid;
}


/* v29 - jemnejšie podtrženie odkazov pri hoveri */
.contact-link span:not(.link-icon),
.contact-link:hover span:not(.link-icon),
.contact-link:focus span:not(.link-icon) {
    text-decoration-thickness: 1px;
}


/* v32 - držať výraz Foto Ateliér spolu */
.nowrap {
    white-space: nowrap;
}


/* v34 - nadpis rozdělený na 2 řádky */
.title-line-main,
.title-line-sub {
    display: block;
}
.title-line-main {
    font-size: clamp(36px, 8vw, 64px);
}
.title-line-sub {
    margin-top: 6px;
    font-size: clamp(28px, 6.5vw, 52px);
    letter-spacing: 0.12em;
}
@media (max-width: 560px) {
    .title-line-main {
        font-size: clamp(30px, 8vw, 46px);
    }
    .title-line-sub {
        font-size: clamp(23px, 6.5vw, 36px);
        letter-spacing: 0.08em;
    }
}


/* v35 - Facebook kontakt */
.facebook-link {
    font-style: italic;
    letter-spacing: 0.08em;
}
.fb-icon {
    width: 1.25em;
    height: 1.25em;
    min-width: 1.25em;
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25em;
}


/* v37 - zmenšenie kontaktov na mobile, aby e-mail nepretekal mimo bublinu */
@media (max-width: 560px) {
    .contact-card {
        padding-left: 12px;
        padding-right: 12px;
    }
    .address {
        font-size: 18px;
        line-height: 1.35;
    }
    .contact-card a {
        font-size: 18px;
        line-height: 1.28;
    }
    .contact-link {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        padding-left: 4px;
        padding-right: 4px;
    }
    .contact-link span:not(.link-icon) {
        min-width: 0;
    }
    .facebook-link {
        font-size: 22px !important;
        letter-spacing: 0.04em;
    }
}
@media (max-width: 390px) {
    .contact-card a {
        font-size: 16px;
    }
    .facebook-link {
        font-size: 20px !important;
    }
}


/* v38 - mobil: adresa se nesmí zalomit tak, aby číslo 4 zůstalo samotné */
@media (max-width: 560px) {
    .address .contact-link {
        font-size: clamp(14px, 3.7vw, 17px);
        line-height: 1.35;
    }
    .address .contact-link span:not(.link-icon) {
        overflow-wrap: normal;
        word-break: normal;
    }
}
@media (max-width: 390px) {
    .address .contact-link {
        font-size: 14px;
    }
}


/* v39 - mobil: držať Fotoateliér Bratislava na jednom riadku */
@media (max-width: 560px) {
    .title-line-sub {
        font-size: clamp(18px, 5vw, 28px) !important;
        letter-spacing: 0.03em !important;
        white-space: nowrap;
    }
}
@media (max-width: 390px) {
    .title-line-sub {
        font-size: 17px !important;
        letter-spacing: 0.02em !important;
    }
}


/* v40 - rozšírená pätička s prevádzkovateľom */
.footer-brand {
    margin-bottom: 14px;
}
.footer-info {
    width: min(760px, 100%);
    margin: 12px auto;
    padding: 14px 16px;
    border: 1px solid #e2d8c8;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}
.footer-block {
    margin: 0 auto 12px;
}
.footer-block:last-child {
    margin-bottom: 0;
}
.footer-block strong {
    color: #333;
}
.footer-copy {
    margin-top: 12px;
}
@media (max-width: 560px) {
    .footer {
        font-size: 12px;
    }
    .footer-info {
        padding: 12px;
        border-radius: 14px;
    }
}


/* v43 - spodná informačná bublina bez tučného písma */
.footer-info,
.footer-info strong,
.footer-block,
.footer-block strong {
    font-weight: 400 !important;
}


/* v44 - spodná informačná bublina úplne bez tučného písma */
.footer-info *,
.footer-info strong,
.footer-info b,
.footer-info a,
.footer-info .footer-block,
.footer-info .footer-block * {
    font-weight: 400 !important;
}
.footer-copy {
    font-weight: 400 !important;
}
