/* =============================
   CF7 Popup Modal Styles
   ============================= */

/* Osnovni modal overlay */
.cf7-modal {
    display: none; /* Početno sakriven */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/* Aktiviran modal overlay */
.cf7-modal-show {
    display: flex;
    opacity: 1; /* fade-in */
}

/* Modal sadržaj */
.cf7-modal-content {
    position: relative;
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 0px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

/* Aktiviran modal sadržaj */
.cf7-modal-show .cf7-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Dugme za zatvaranje */
.cf7-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #00000070;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cf7-close:hover {
    color: #8b3a2e;
}

/* Sprečava skrolovanje pozadine kada je modal otvoren */
body.cf7-modal-open {
    overflow: hidden;
}

/* =============================
   Contact Form 7 Styling
   ============================= */

/* Input polja i textarea */
.cf7-modal-content input[type="text"],
.cf7-modal-content input[type="email"],
.cf7-modal-content textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 16px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Fokus efekat za input */
.cf7-modal-content input[type="text"]:focus,
.cf7-modal-content input[type="email"]:focus,
.cf7-modal-content textarea:focus {
    /*border-color: #0073e6;*/
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
    outline: none;
}

/* Submit dugme */
/*
.cf7-modal-content input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
*/
/* Hover efekt za submit */
.cf7-modal-content input[type="submit"]:hover {
    /*background-color: #005bb5;*/
    transform: translateY(-2px);
}

/* =============================
   Responsive prilagođavanje
   ============================= */
@media (max-width: 600px) {
    .cf7-modal-content {
        padding: 15px 20px;
        width: 95%;
        max-width: none;
        border-radius: 8px;

        max-height: 90vh;   /* maksimalna visina na mobilnom */
        overflow-y: auto;   /* scroll unutar modala ako je sadržaj veći */
    }

    /* Input polja i textarea */
    .cf7-modal-content input[type="text"],
    .cf7-modal-content input[type="email"],
    .cf7-modal-content textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    /* Submit dugme */
    .cf7-modal-content input[type="submit"] {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* Dugme za zatvaranje */
    .cf7-close {
        font-size: 24px;
        top: 8px;
        right: 12px;
    }
}
