* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #172b4d;
    background-color: #f4f5f7;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-logo {
    height: 55px;
    width: auto;
}

.btn-call, .btn-primary, .btn-promo {
    background-color: #ffab00;
    color: #172b4d;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-call:hover, .btn-primary:hover, .btn-promo:hover {
    background-color: #e69900;
}

.promo-banner {
    background-color: #0052cc;
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
}

.promo-badge {
    background-color: #ff3333;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 0.5rem;
}

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 30, 80, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.contact-box {
    background: #0052cc;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.phone-link {
    display: inline-block;
    font-size: 2rem;
    color: #ffab00;
    font-weight: bold;
    text-decoration: none;
    margin: 1rem 0;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #172b4d;
    color: white;
    margin-top: 3rem;
}

/* Ružové akcenty v CSS */
.btn-call, .btn-primary, .btn-promo {
    background-color: #ff2a85; /* PINKPOINT ružová */
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-call:hover, .btn-primary:hover, .btn-promo:hover {
    background-color: #e60067; /* Tmavšia ružová pri prejdení myšou */
}

.promo-badge {
    background-color: #e60067;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 0.5rem;
}

.phone-link {
    display: inline-block;
    font-size: 2rem;
    color: #ff2a85; /* Ružové telefónne číslo */
    font-weight: bold;
    text-decoration: none;
    margin: 1rem 0;
}
