/* --- OSNOVNE NASTAVITVE --- */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Chakra Petch', sans-serif;
    color: white;
    background-image: url('../SLIKE/bg.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
}

/* --- GLAVNA POSTAVITEV --- */
#main-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

/* --- IGRALNO OBMOČJE --- */
#game-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    aspect-ratio: 1 / 1;
    background: transparent;
    border: 8px solid #222;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(125, 177, 84, 0.3);
}

#mazeCanvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* Da ne seka ven iz okvirja */
    opacity: 0.75;
}

#car {
    position: absolute;
    width: 11%;
    height: auto;
    z-index: 100;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); /* Avtu doda rahlo senco */
}

/* --- START / FINISH OZNAKE --- */
.label {
    position: absolute;
    font-weight: 700;
    font-size: 20px;
    z-index: 5;
    padding: 6px 20px;
    border-radius: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.start {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: #fff;
    border: 3px solid #1e8449;
}

.finish {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: #fff;
    border: 3px solid #922b21;
}

/* --- STRANSKA VRSTICA (SIDEBAR) --- */
#sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 260px;
}

.title-box h2 {
    margin: 0;
    font-size: 32px;
    color: #f1c40f;
    text-align: center;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    letter-spacing: 2px;
}

/* --- ČASOVNIK --- */
.timer {
    background: rgba(26, 37, 47, 0.85); /* 0.85 pomeni 85% prosojnost */
    padding: 20px;
    border: 2px solid #34495e;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.timer-label {
    display: block;
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.timer-value {
    font-size: 38px;
    font-weight: 700;
    color: #2ecc71;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
}

/* --- LEGENDA / KONTROLE --- */
.legend {
    background: rgba(44, 62, 80, 0.85); /* 85% prosojnost */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #34495e;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.legend h3 {
    margin: 0 0 15px 0;
    color: #ecf0f1;
    font-size: 18px;
    letter-spacing: 1px;
}

.control-keys {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.control-keys span {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 0 #c0392b;
}

.legend p {
    margin: 5px 0 0 0;
    color: #bdc3c7;
    font-size: 15px;
}

/* --- GUMB ZA REŠITEV --- */
.action-btn {
    background-color: #e67e22; /* Živahna dirkaško oranžna barva */
    color: #ffffff; /* Bela beseda za močan kontrast */
    font-size: 16px;
    font-weight: bold;
    font-family: 'Chakra Petch', sans-serif; /* Če uporabljaš to pisavo */
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Oblika in prostor */
    padding: 15px 25px;
    width: 100%; /* Da zapolni širino stranskega menija */
    border: 2px solid #d35400; /* Temnejši oranžen rob */
    border-radius: 10px;
    cursor: pointer;
    
    /* Senca za 3D občutek */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    
    /* Animacija za lepši prehod, ko greš z miško čez */
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #f39c12; /* Postane malce svetlejši */
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.7); /* Močnejši sijaj */
    transform: translateY(-2px); /* Gumb se navidezno rahlo dvigne */
}

#show-solution-btn:active {
    transform: translateY(1px); /* Gumb se pritisne navzdol */
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.4);
}



