/*
Theme Name: CROX Theme
Version: 2.0
*/

/* 1. POTPUNI RESET I FLEXBOX STRUKTURA */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #1a1a1a !important;
}

body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}


/* 2. GLAVNI SADRŽAJ */
#crox-page-wrap,
#page,
#content,
.site-content,
main {
    flex: 1 0 auto !important;
    width: 100% !important;
}


/* 3. FOOTER */
.crox-footer {
    flex-shrink: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
}


/* 4. SIDEBAR */
body .crox-sidebar-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #e63946;
    padding-left: 10px;
}

body .crox-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

body .crox-card-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    align-items: flex-start;
    border: 1px solid #252525;
}

body .crox-card-item:hover {
    background-color: #252525;
    border-color: #333;
}

body .crox-sidebar-img {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

body .crox-sidebar-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body .crox-sidebar-cat {
    color: #e63946;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

body .crox-sidebar-h {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 5px 0;
}

body .crox-sidebar-date {
    color: #777;
    font-size: 10px;
}

body .crox-sidebar-more {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
}

body .crox-sidebar-more:hover {
    background: #e63946;
    border-color: #e63946;
}


/* 5. KOMENTARI */
.crox-comments-section {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 25px !important;
    border-radius: 8px !important;
}

.crox-comments-section textarea,
.crox-comments-section input {
    background: #222 !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 10px !important;
    border-radius: 4px !important;
    width: 100% !important;
}

.crox-comments-section #submit {
    background: #e63946 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    margin-top: 10px !important;
}

.crox-comments-section #submit:hover {
    background: #d62839 !important;
}

.crox-comments-section label {
    color: #bbb !important;
}


/* Sakrij mobilni prikaz na desktopu,
   pokaži ga na mobitelu */
@media screen and (max-width: 768px) {

    .desktop-only-view {
        display: none !important;
    }

    .mobile-only-view {
        display: flex !important;
    }
}


/* Sakrij desktop prikaz na mobitelu */
@media screen and (min-width: 769px) {

    .mobile-only-view {
        display: none !important;
    }
}