/* ================================================= */
/* STILOVI ZA KONTAKT (contact.css)                  */
/* ================================================= */

body {
    background-color: #121212;
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: block;
}

.main-container {
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Naslov stranice */
h1 {
    color: #5d5dff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(93, 93, 255, 0.3);
}

/* --- GLAVNI KONTEJNER FORME (Glassmorphism) --- */
.contact-form-wrapper {
    width: 100%;
    /* Blaga prozirna pozadina */
    background-color: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); /* Tanki rub */
    
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-form-wrapper p {
    text-align: center;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* --- LABELA I INPUTI --- */
label {
    display: block;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #b6ccf2; /* Pastelna plava */
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-input {
    width: 100%;
    padding: 12px 15px;
    
    /* Tamna pozadina inputa */
    background-color: #1a1a1a; 
    border: 1px solid #444;
    border-radius: 10px;
    
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.contact-input::placeholder {
    color: #555;
}

/* Fokus efekt (kad klikneš u polje) */
.contact-input:focus {
    outline: none;
    border-color: #5d5dff;
    background-color: #222;
    box-shadow: 0 0 0 3px rgba(93, 93, 255, 0.2);
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

/* --- GUMBI I AKCIJE --- */
.form-actions {
    display: flex;
    flex-direction: column; /* Na mobitelu jedan ispod drugog */
    gap: 15px;
    margin-top: 30px;
}

/* Gumb POŠALJI (Zeleni, moderni) */
.send-contact-button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.send-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.send-contact-button:active {
    transform: translateY(0);
}

/* Gumb NATRAG (Neutralni, sivi) */
.back-button {
    background-color: transparent;
    color: #aaa;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid #444;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.back-button:hover {
    background-color: #2b2b2b;
    color: #fff;
    border-color: #666;
}

/* --- RESPONSIVNOST (Tablet i Desktop) --- */
@media (min-width: 600px) {
    .form-actions {
        flex-direction: row; /* Jedan do drugog */
    }
    .send-contact-button, .back-button {
        flex: 1; /* Jednaka širina */
    }
}