/* ========== Font ========== */
@font-face {
    font-family: 'Veneer Two';
    src: url('../fonts/Veneer Two.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========== Reset ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== Screen ========== */
.screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d0d0d0;
    padding: 20px 20px 16px;
    gap: 0;
    overflow: hidden;
}

/* ========== Logo ========== */
.landing-logo {
    flex-shrink: 0;
    margin-bottom: 4px;
}

.landing-logo img {
    width: 180px;
    height: 50px;
    object-fit: contain;
}

/* ========== Title ========== */
.landing-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}

/* ========== Cards Container ========== */
.landing-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* ========== Card Base ========== */
.landing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 16px 20px 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.landing-card--dozzy {
    background: transparent;
    border: none;
}

.landing-card--kikiriki {
    background: transparent;
    border: none;
}

/* ========== Dozzy Card Text ========== */
.dozzy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #E8871E;
    text-align: center;
    line-height: 0.95;
    transition: transform 0.3s ease;
}

.landing-card__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1F3A;
    text-align: center;
}

.kikiriki-desc {
    letter-spacing: -1px;
}

.landing-card__spacer {
    height: 12px;
}

.landing-card__spacer--sm {
    height: 3px;
}

.landing-card__sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-align: center;
    line-height: 0.85;
    transition: transform 0.3s ease;
}

.energetski-label {
    font-size: 24px;
    color: #4CC8D4;
}

.relaks-label {
    font-size: 24px;
    color: #1A1F3A;
}

/* ========== Kikiriki Card Text ========== */
.kikiriki-title {
    font-family: 'Veneer Two', sans-serif;
    font-size: 40px;
    font-weight: normal;
    color: #333132;
    text-align: center;
    letter-spacing: 5px;
    line-height: 0.85;
    transition: transform 0.3s ease;
}

.landing-card__flavor {
    font-family: 'Veneer Two', sans-serif;
    font-size: 36px;
    font-weight: normal;
    text-align: center;
    transition: transform 0.3s ease;
}

.pikant-label { color: #f58c20; }
.bbq-label { color: #291c31; }
.chilli-label { color: #ef4136; }

/* ========== Hover: scale(1.1) bez layout shift-a ========== */
.landing-card--dozzy:hover .dozzy-title,
.landing-card--dozzy:active .dozzy-title {
    transform: scale(1.1);
}

.landing-card--dozzy:hover .energetski-label,
.landing-card--dozzy:active .energetski-label {
    transform: scale(1.1);
}

.landing-card--dozzy:hover .relaks-label,
.landing-card--dozzy:active .relaks-label {
    transform: scale(1.1);
}

.landing-card--kikiriki:hover .kikiriki-title,
.landing-card--kikiriki:active .kikiriki-title {
    transform: scale(1.1);
}

.landing-card--kikiriki:hover .landing-card__flavor,
.landing-card--kikiriki:active .landing-card__flavor {
    transform: scale(1.1);
}
