/* ═══════════════════════════════════════════════════════════
   FANTOVI s.r.o. – Restaurace Jindice
   Barvy z loga: červená, zelená, zlatá, šedá
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    /* Logo colors */
    --red: #CC2229;
    --red-dark: #a51b21;
    --green: #1A5C2E;
    --green-light: #23753b;
    --green-dark: #134520;
    --gold: #C8960C;
    --gold-light: #daa520;
    --gray: #5A5A5A;

    /* Functional colors */
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-warm: #faf7f2;
    --bg-warm-alt: #f5f0e8;
    --dark: #2a2523;
    --dark-light: #3d3633;
    --border: #e8e2d8;
    --shadow: rgba(42, 37, 35, 0.08);
    --shadow-md: rgba(42, 37, 35, 0.12);
    --shadow-lg: rgba(42, 37, 35, 0.18);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-py: 100px;
    --container-px: 24px;
    --container-max: 1140px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;

    /* Border radius */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

a:hover {
    color: var(--green-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn--primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 92, 46, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn--outline-dark:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 92, 46, 0.25);
}

.btn--outline-light {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
    padding: 10px 20px;
}

.btn--outline-light:hover {
    background: var(--green);
    color: var(--white);
}

.btn--sm {
    font-size: 14px;
    padding: 10px 20px;
}

.btn--lg {
    font-size: 16px;
    padding: 16px 36px;
}

.btn--icon svg {
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px var(--shadow);
}


.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo img {
    height: 75px;
    width: auto;
    transition: height var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.header__logo-dark {
    display: none;
}

.header.scrolled .header__logo-white {
    display: none;
}

.header.scrolled .header__logo-dark {
    display: block;
}

.header.scrolled .header__logo img {
    height: 66px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav-contact {
    display: none;
}

.header__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
}

.header__link:hover::after,
.header__link.active::after {
    transform: scaleX(1);
}

.header__link:hover {
    color: var(--white);
}

.header.scrolled .header__link {
    color: var(--text);
}

.header.scrolled .header__link:hover {
    color: var(--green);
}

/* Header right group (buttons + contact) */
.header__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: color var(--duration) var(--ease);
}

.header__contact-item:hover {
    color: var(--white);
}

.header__contact-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.header.scrolled .header__contact-item {
    color: var(--text-light);
}

.header.scrolled .header__contact-item:hover {
    color: var(--green);
}

.header.scrolled .header__contact-sep {
    color: var(--border);
}

.header:not(.scrolled) .header__actions .btn--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.header:not(.scrolled) .header__actions .btn--outline-light:hover {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

.header:not(.scrolled) .header__actions .btn--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.header:not(.scrolled) .header__actions .btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.header.scrolled .header__burger span {
    background: var(--dark);
}

.header__burger.active span {
    background: var(--dark);
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero.jpg?v=4') center center / cover no-repeat;
    overflow: hidden;
}

/* Decorative pattern – jemná textura */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(200, 150, 12, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 60%, rgba(204, 34, 41, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(26, 92, 46, 0.06) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8960c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 25, 20, 0.7);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 0 80px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s var(--ease) both;
}

.hero__title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.8s var(--ease) 0.15s both;
}

.hero__subtitle {
    font-size: clamp(17px, 2.5vw, 21px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInDown 0.8s var(--ease) 0.3s both;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero__scroll svg {
    animation: bounce 2s infinite;
}


/* ═══════════════════════════════════════════════════════════
   SECTIONS – Common
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: var(--section-py) 0;
}

.section--warm {
    background: var(--bg-warm);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__title {
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 16px;
    color: var(--dark);
}

.section__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 0 auto 16px;
}

.section__subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   CO NABÍZÍME – Cards
   ═══════════════════════════════════════════════════════════ */
.cards--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--duration) var(--ease);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-md);
    border-color: var(--border);
}

.card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--green);
}

.card__icon svg {
    width: 100%;
    height: 100%;
}

.card__title {
    font-size: 24px;
    margin-bottom: 14px;
}

.card__text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card__price {
    font-size: 16px;
    color: var(--text);
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 12px 20px;
    margin-bottom: 24px;
}

.card__price strong {
    color: var(--green);
    font-size: 20px;
}

.card__hours {
    font-size: 16px;
    color: var(--text);
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 12px 20px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card__hours-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}


/* ═══════════════════════════════════════════════════════════
   JÍDELNÍČEK
   ═══════════════════════════════════════════════════════════ */
.menu {
    max-width: 800px;
    margin: 0 auto;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.menu__tab {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.menu__tab:hover {
    border-color: var(--green);
    color: var(--green);
}

.menu__tab.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.menu__content {
    position: relative;
    margin-bottom: 32px;
    min-height: 200px;
}

.menu__loader {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.menu__loader.active {
    display: flex;
}

.menu__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.menu__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px var(--shadow);
}

.menu__image.hidden {
    visibility: hidden;
}

.menu__downloads {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.menu__note-highlight {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.menu__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.menu__cta {
    text-align: center;
}


/* ═══════════════════════════════════════════════════════════
   ROZVOZ
   ═══════════════════════════════════════════════════════════ */
.rozvoz__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.rozvoz__heading {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark);
    position: relative;
    padding-bottom: 12px;
}

.rozvoz__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__content {
    padding-top: 7px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.rozvoz__warning {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border-left: 4px solid var(--gold);
    padding: 14px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 28px;
}

/* Advantages */
.advantages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.advantages li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.advantages li svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

/* Pricing table */
.pricing {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px var(--shadow);
}

.pricing__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.pricing__table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.pricing__table tr:last-child td {
    border-bottom: none;
}

.pricing__detail {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing__price {
    text-align: right;
    font-weight: 700;
    font-size: 20px !important;
    color: var(--green);
    white-space: nowrap;
}

.pricing__note {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    padding-top: 4px;
}


/* ═══════════════════════════════════════════════════════════
   KAM ROZVÁŽÍME
   ═══════════════════════════════════════════════════════════ */
.cities {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cities__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--green);
    transition: all var(--duration) var(--ease);
}

.city:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 92, 46, 0.2);
}

.cities__note {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   O NÁS
   ═══════════════════════════════════════════════════════════ */
.about {
    max-width: 900px;
    margin: 0 auto;
}

.about__text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.about__text p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about__gallery--single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.about__photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-md);
    aspect-ratio: 4/3;
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about__photo:hover img {
    transform: scale(1.05);
}


/* ═══════════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════════ */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__block {
    margin-bottom: 28px;
}

.contact__block:last-child {
    margin-bottom: 0;
}

.contact__block h3 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact__block p {
    font-size: 17px;
    line-height: 1.7;
}

.contact__block a {
    color: var(--green);
    font-weight: 600;
}

.contact__block a:hover {
    color: var(--green-light);
    text-decoration: underline;
}

.contact__hours {
    border-collapse: collapse;
}

.contact__hours td {
    padding: 4px 0;
    font-size: 17px;
}

.contact__hours td:first-child {
    padding-right: 20px;
    font-weight: 500;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-md);
    min-height: 400px;
    background: var(--bg-warm);
    position: relative;
}

.contact__map iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--dark);
    padding: 40px 0 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 28px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    flex-shrink: 0;
    align-self: center;
}

.footer__brand p {
    font-size: 14px;
    color: var(--white);
    line-height: 1;
    padding-top: 12px;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 12px;
}

.footer__links a {
    font-size: 14px;
    color: var(--white);
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--gold);
}

/* Footer bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-size: 13px;
    color: var(--white);
    transition: color var(--duration) var(--ease);
}

.footer__legal a:hover {
    color: var(--gold);
}

.footer__platform-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white);
    transition: color var(--duration) var(--ease);
}

.footer__platform-link:hover {
    color: var(--gold);
}

.footer__platform-link strong {
    font-weight: 600;
}

.footer__platform-logo {
    height: 48px;
    width: auto;
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet (< 1024px) ─── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .header__nav {
        display: none;
    }

    .header__right {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    /* Mobile nav – header becomes fullscreen */
    .header:has(.header__nav.open) {
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .header:has(.header__nav.open) .header__logo-white {
        display: none;
    }

    .header:has(.header__nav.open) .header__logo-dark {
        display: block;
    }

    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        gap: 8px;
    }

    .header__nav.open .header__link {
        font-size: 22px;
        color: var(--dark);
        padding: 12px 24px;
    }

    .header__nav.open .header__link:hover {
        color: var(--green);
    }

    .header__nav.open .header__nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .header__nav-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
    }

    .header__nav-contact a svg {
        flex-shrink: 0;
    }

    .header__nav-contact a:hover {
        color: var(--green);
    }

    .rozvoz__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .contact__map {
        min-height: 300px;
    }
}

/* ─── Mobile (< 768px) ─── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    body {
        font-size: 16px;
    }

    .cards--two {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 32px 28px;
    }

    .about__gallery {
        grid-template-columns: 1fr;
    }

    .menu__downloads {
        flex-direction: column;
        align-items: center;
    }

    .hero__subtitle br {
        display: none;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        flex-direction: column;
    }

    .footer__links {
        justify-content: center;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* ─── Small mobile (< 480px) ─── */
@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        width: 100%;
    }

    .hero__actions .btn {
        font-size: 14px;
        padding: 14px 24px;
    }

    .menu__tabs {
        gap: 4px;
    }

    .menu__tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .city {
        padding: 10px 18px;
        font-size: 14px;
    }

    .step {
        gap: 12px;
    }

    .step__number {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .pricing {
        padding: 24px 20px;
    }
}
