@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #c7f9ff, #ffe6f0, #d0f4de);
    color: #1d2b2d;
}

/* HEADER */
header {
    height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.logo {
    width: 100px;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
}

/* SECTIONS */
section {
    padding: 30px 20px;
    max-width: 850px;
    margin: auto;
}

/* SMOOTH LOOK */
.fade {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s ease;
}

/* TITLES */
h2 {
    color: #ff4f93;
    font-weight: 700;
    margin-bottom: 15px;
}

/* CARD POKOJE */
.card {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 14px;
    margin: 12px 0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    backdrop-filter: blur(6px);
}

.card:hover {
    transform: translateY(-4px) scale(1.01);
}

.card img {
    width: 85px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

/* FORM */
form {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

input, select {
    width: 100%;
    padding: 11px;
    margin: 7px 0;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    outline: none;
    transition: 0.2s;
}

input:focus, select:focus {
    border-color: #ff7eb3;
    box-shadow: 0 0 0 3px rgba(255,126,179,0.2);
}

/* BUTTON */
button {
    background: linear-gradient(135deg,#ff7eb3,#ff5fa2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.02);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    padding: 28px;
    border-radius: 18px;
    width: 320px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);

/* LOADER */
.loader {
    border: 4px solid #eee;
    border-top: 4px solid #ff5fa2;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
    margin: 18px auto;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
