/* ----------- GLOBAL ----------- */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #00a7c4 0%, #008fb0 60%);
    color: #ffffff;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4 {
    margin: 0;
}

/* ----------- HERO ----------- */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 0.95;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 28px;
    margin-top: 15px;
    color: #ffeb00;
    font-weight: 700;
}

.hero-sub {
    margin: 20px 0;
    max-width: 500px;
    opacity: 0.9;
    font-size: 16px;
}

/* ----------- BUTTONS ----------- */

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 26px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary {
    background: #d4ee00;
    color: #003b50;
}

.btn-primary:hover {
    background: #e8ff32;
}

.btn-secondary {
    background: #005b7a;
}

.btn-secondary:hover {
    background: #03729d;
}

/* ----------- INFO CARD ----------- */

.card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(3px);
}

.card h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

.card-info {
    width: 300px;
    min-width: 280px;
}

.info-block {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-text {
    font-size: 14px;
    line-height: 1.3;
}

/* ----------- SORTIMENT ----------- */

.card-wide h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.col h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffffff;
}

.col ul {
    padding-left: 20px;
    margin: 0;
    font-size: 15px;
}

.col ul li {
    margin-bottom: 8px;
}

/* QR Box */

.qr {
    text-align: center;
}

.qr-image {
    width: 150px;
    height: auto;
    margin-top: 10px;
}

/* ----------- KONTAKT ----------- */

.card-contact h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left a {
    color: #ffeb00;
    text-decoration: none;
    font-weight: bold;
}

.contact-left a:hover {
    text-decoration: underline;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 950px) {
    .hero {
        flex-direction: column;
    }

    .card-info {
        width: 100%;
        margin-top: 20px;
    }

    .columns {
        grid-template-columns: 1fr;
    }
}
