/* ====== GLOBAL ====== */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #faf6ff;
    color: #232129;
    line-height: 1.5;
}

h1,
h2,
h3 {
    color: #A14D95;
    font-weight: 700;
    margin: 0 0 .6em;
}

/* ====== HEADER / LANG ====== */
.header {
    padding: 12px 16px;
    background: #A14D95;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-switcher button {
    color: #fff;
    background: #A14D95;
    margin-left: 8px;
    padding: 7px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: background .2s;
}

.language-switcher button.active,
.language-switcher button:hover {
    background: #E7524E;
}

/* ====== LAYOUT ====== */
.container {
    max-width: 1000px;
    margin: 32px auto 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(161, 77, 149, .08);
    padding: 28px 28px 36px;
}

/* ====== HERO ====== */
.hero {
    text-align: center;
    padding: 48px 10px 34px;
    margin-bottom: 22px;
    background: linear-gradient(120deg, #faf6ff 60%, #e2c6e8 100%);
    border-radius: 18px;
}

.hero h1 {
    font-size: 2.2em;
    font-weight: 800;
    color: #A14D95;
}

.hero p {
    font-size: 1.14em;
    margin: 10px auto 6px;
    max-width: 760px;
}

.hero .hashtag {
    margin-top: 10px;
    font-size: 1.15em;
    font-weight: 700;
    color: #A14D95;
}

/* CTA button */
.btn-primary {
    display: inline-block;
    background: #E7524E;
    color: #fff;
    padding: 13px 28px;
    margin-top: 16px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    transition: background .2s, transform .02s;
}

.btn-primary:hover {
    background: #DC582A;
    color: #fff;
}

.btn-primary:active {
    transform: translateY(1px);
}

.center {
    text-align: center;
    margin-top: 18px;
}

/* ====== INFO TABLES ====== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 22px;
    background: #fff;
}

.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1e5f5;
    vertical-align: top;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 600;
    color: #A14D95;
    width: 230px;
    min-width: 140px;
}

/* ====== INFO BOXES ====== */
.info-box {
    background: #FFF6F0;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 18px 0 20px;
    border-left: 5px solid #E7524E;
    box-shadow: 0 2px 8px rgba(161, 77, 149, .04);
}

.info-box.program {
    background: #F7F8FC;
    border-left-color: #A14D95;
}

/* Liste */
.kotizacija-lista {
    background: #faf6ff;
    border-radius: 10px;
    padding: 16px 24px 16px 32px;
    margin: 14px 0 20px;
    border-left: 4px solid #A14D95;
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    color: #888;
    padding: 18px;
    font-size: .95em;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 700px) {
    .container {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .hero {
        padding: 36px 10px 26px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .info-table td {
        padding: 8px 8px;
    }

    .info-table td:first-child {
        width: 150px;
    }

    .btn-primary {
        width: 100%;
        max-width: 380px;
    }
}





/* zamijeni postojeće modal stilove ovim */
#osobaModal{
  position:fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  display:none;
  background:rgba(0,0,0,.28);
  z-index:9999;
  justify-content:center;
  align-items:center;
}
#osobaModal.active{display:flex !important;}

#osobaModal .modal-content{
  background:#fff;
  padding:28px 16px 18px;
  border-radius:14px;
  width:95vw;
  max-width:720px;       /* povećaj po potrebi */
  box-shadow:0 6px 28px #0002;
  max-height:88vh;
  overflow:auto;
  position:relative;
  transform:none;        /* ukloni konfliktne transformacije */
}
