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

body {
    font-family: "Roboto", sans-serif;
    color: #111827;
    background-color: #f5f5f7;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER – TOP BAR */
.site-header {
    background-color: #ffffff;
}

.top-bar {
    background-color: #223d6d;
    color: #f9fafb;
    font-size: 12px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}

.top-bar-left span {
    opacity: 0.85;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right a {
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.top-bar-right a:hover {
    opacity: 1;
}

.top-bar-right span {
    opacity: 0.35;
}

.top-link {
    font-weight: 500;
}

.top-btn {
    border-radius: 999px;
    border: 1px solid rgba(249, 250, 251, 0.2);
    padding: 4px 10px;
    font-size: 11px;
    margin-left: 4px;
    background: rgba(15, 23, 42, 0.6);
}

/* MAIN NAV */
.main-nav {
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo img{
    width: 100px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #111827;
}

.nav-link-active {
    color: #111827;
    border-color: #facc15;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Gumbi */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 999px;
    padding: 9px 18px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.15s ease, border-color 0.15s ease,
        transform 0.05s ease, box-shadow 0.15s ease;
}

.btn-ghost {
    background-color: #ffffff;
    border-color: #e5e7eb;
    color: #111827;
}

.btn-ghost:hover {
    background-color: #f9fafb;
}

.btn-primary {
    background-color: #facc15;
    border-color: #eab308;
    color: #111827;
    box-shadow: 0 8px 16px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
    background-color: #eab308;
}

/* HERO */
.hero {
/*    position: relative;
    min-height: 80vh;
    background-image: url("header.jpg");
    background-size: cover;
    background-position: center;
    color: #f9fafb;
    background-repeat: no-repeat;*/
}

.hero .main-img{
    width: 100%;
}

.hero-overlay {
    /* position: relative; */
    /* background: linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.35)); */
    /* min-height: 80vh; */
}

.hero-inner {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* min-height: 380px; */
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-note {
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.9;
}

/* PROGRAM – VOZNIK ZAČETNIK */
.program-section {
    padding: 40px 0 56px 0;
    background-color: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Tabi */
.program-tabs-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
}

.program-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease,
        box-shadow 0.15s ease, transform 0.05s ease;
}

.program-tab:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.program-tab-active {
    border-color: #facc15;
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(250, 204, 21, 0.25);
}

.program-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #f9fafb;
}

.program-tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.program-tab-title {
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}

.program-tab-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* Vsebina programa */
.program-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.program-text {
    flex: 2;
}

.program-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.program-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

.program-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.program-benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #22c55e;
}

/* Desna stran – kartica */
.program-side {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.program-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 20px 20px 22px 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    max-width: 320px;
}

.program-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 6px;
}

.program-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.program-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

.program-card-btn {
    width: 100%;
    justify-content: center;
}

/* OSTALI PROGRAMI */
.other-programs-section {
    padding: 46px 0 50px 0;
    background-color: #ffffff;
}

.other-programs-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.other-programs-image-box {
    flex: 1;
}

.other-programs-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.other-programs-content {
    flex: 1.3;
}

.other-programs-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.other-programs-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

.other-programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.other-program-card {
    flex: 1 1 45%;
    min-width: 140px;
    background-color: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.other-program-card:hover {
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.10);
}

.other-program-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-size: 16px;
}

.other-program-label {
    font-weight: 500;
}

.other-program-link {
    display: inline-flex;
    font-size: 14px;
    color: #1d4ed8;
    font-weight: 500;
}

/* FAQ */
.faq-section {
    padding: 46px 0 52px 0;
    background-color: #f3f4f6;
}

.faq-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
}

.faq-item[open] {
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
    list-style: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.faq-toggle {
    margin-left: 12px;
    font-size: 18px;
    color: #9ca3af;
}

.faq-answer {
    margin-top: 8px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* ZAKAJ ZSAM */
.why-section {
    padding: 46px 0 52px 0;
    background-color: #ffffff;
}

.why-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.why-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.why-item {
    flex: 1;
    background-color: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px 16px 20px 16px;
    text-align: left;
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    margin-bottom: 10px;
    font-size: 18px;
}

.why-item-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

/* KONTAKT + MAPA */
.contact-section {
    padding: 46px 0 52px 0;
    background-color: #f3f4f6;
}

.contact-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.contact-form-box {
    flex: 1.2;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 20px 20px 24px 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.contact-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    gap: 12px;
}

.contact-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.contact-field label {
    color: #4b5563;
}

.contact-field input,
.contact-field textarea {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5);
}

.contact-note {
    font-size: 11px;
    color: #6b7280;
}

.contact-submit {
    margin-top: 4px;
}

/* MAPA */
.contact-map-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 16px 16px 18px 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-map-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-map-title {
    font-size: 15px;
    font-weight: 700;
}

.contact-map-subtitle {
    font-size: 13px;
    color: #6b7280;
}

.contact-map-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-image {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 220px;
}

.contact-map-pin {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
}

.contact-map-footer {
    display: flex;
    justify-content: flex-end;
}

.contact-map-button {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    font-size: 12px;
    background-color: #f9fafb;
    cursor: pointer;
}

/* FOOTER */
.site-footer {
    background-color: #050816;
    color: #e5e7eb;
    padding-top: 26px;
    margin-top: 10px;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-column {
    flex: 1;
    font-size: 13px;
}

.footer-brand {
    flex: 1.4;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 6px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #e5e7eb;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 10px 0 14px 0;
    font-size: 12px;
    color: #9ca3af;
    background-color: #020617;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* POT DO VOZNIŠKEGA IZPITA */
.steps-section {
    position: relative;
    padding: 40px 0 46px 0;
     /* rumena podlaga */
    overflow: hidden;
}

/* dekorativni "stickers" */
.steps-sticker {
    position: absolute;
    font-size: 40px;
    opacity: 0.22;
    pointer-events: none;
}

.steps-sticker-left {
    top: 20px;
    left: 40px;
}

.steps-sticker-right {
    bottom: 10px;
    right: 60px;
}

.steps-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 24px auto;
}

.steps-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.steps-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

/* vrstica s karticami */
.steps-row {
    margin-top: 24px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}

/* posamezna kartica */
.step-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 14px 12px 16px 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    width: 170px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.step-tag {
    align-self: flex-start;
    font-size: 11px;
    border-radius: 999px;
    padding: 3px 8px;
    background-color: #f3f4f6;
    color: #6b7280;
    margin-bottom: 2px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f9fafb;
    margin-bottom: 4px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.step-text {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

/* puščice med karticami */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111827;
    opacity: 0.7;
    padding: 0 2px;
}

/* CTA pod karticami */
.steps-cta-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-cta-btn {
    border-radius: 999px;
    padding-inline: 22px;
}

.steps-cta-note {
    font-size: 13px;
    color: #4b5563;
}


.steps-row + .steps-row {
    margin-top: 14px;
}

/* MODERNA verzija step-card */
.step-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 20px 22px 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.15);
    border: 1px solid #f2f2f2;
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

/* dekorativna pot (dotted line) */
.step-card::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 36px;
    background-image: radial-gradient(#d4d4d4 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.25;
    pointer-events: none;
}

/* badge */
.step-tag {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border: 2px solid #111827;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 6px;
    width: fit-content;
}

/* ikona (večja!) */
.step-icon {
    font-size: 42px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

/* naslov */
.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

/* opis */
.step-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}


/* =========================
   POT DO VOZNIŠKEGA IZPITA – V2 (kot na sliki)
   ========================= */

.steps-section-v2{
    padding: 52px 0 56px 0;
    background: #ffffff;
}

.steps-section-v2 .steps-header{
    text-align: center;
    max-width: 720px;
    margin: 0 auto 26px auto;
}

.steps-section-v2 .steps-title{
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #111827;
}

.steps-section-v2 .steps-subtitle{
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* grid: 4 v vrsti na večjih zaslonih (kot na slikici), potem 2, potem 1 */
.steps-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 1100px){
    .steps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
    .steps-grid{ grid-template-columns: 1fr; }
}

/* card */
.step-card-v2{
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
    padding: 64px 22px 22px 22px; /* top padding zaradi ikone */
    min-height: 210px;
    overflow: hidden;
}

/* top line + rdeč krog */
.step-card-v2-top{
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    height: 46px;
}

/* vodoravna črta, ki gre "skozi" */
.step-card-v2-top::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #e53935; /* rdeča */
    opacity: 0.95;
}

/* rdeč krog */
.step-card-v2-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 22px rgba(229, 57, 53, 0.32);
    z-index: 2;
    border: 6px solid #ffffff; /* “izrez” kot na sliki */
}

.step-card-v2-title{
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    color: #111827;
    text-align: center;
    margin-bottom: 10px;
}

.step-card-v2-text{
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    text-align: center;
    margin: 0 auto;
    max-width: 260px;
}
