/* ========================================
   GOLD BLOG - SINGLE POST STYLING
   Moderný, profesionálny dizajn pre blog o zlate
   ======================================== */

/* Base Typography */
/* body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0d5b7;
    background-color: #1a1611;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* ========================================
   MAIN CONTENT AREA
   ======================================== */

.single .site-main,
.blog .site-main {
    margin: 0 !important;
}

.single #primary,
.blog #primary {
    width: 70%;
    float: left;
    padding-right: 40px;
}
@media screen and (max-width: 768px) {
    .single #primary,
    .blog #primary {
        width: 100%;
        float: none;
        padding-right: 0;
    }
    
}

/* Article Styling */
.entry {
    /* background: linear-gradient(135deg, #2d2620 0%, #1f1c16 100%); */
    background: linear-gradient(135deg, #000 0%, #1f1c16 100%);
    border-radius: 12px;
    padding: 40px;
    padding-top: 0 !important;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}


/* Featured Image */
.entry-thumbnail {
    margin: -40px -40px 30px -40px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

.entry-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    
    /* position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.entry-thumbnail:hover a img {
    transform: translate(-50%, -50%) scale(1.02);
}

/* Entry Header */
.entry-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
#yoast-breadcrumbs {
    margin: 20px 0;
    font-size: 0.9rem;
}

#yoast-breadcrumbs a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

#yoast-breadcrumbs a:hover {
    color: #f4d03f;
}

.breadcrumb_last {
    color: #b8a082;
}

/* Entry Meta */
.entry-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.entry-meta li {
    display: flex;
    align-items: center;
    color: #b8a082;
}

.meta-icon {
    margin-right: 8px;
    color: #d4af37;
    font-size: 1.1rem;
}

.entry-meta a {
    color: #b8a082;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #d4af37;
}

/* ========================================
   CONTENT STYLING
   ======================================== */

.entry-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0d5b7;
}

.entry-content p {
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: justify;
}

.entry-content h2 {
    font-size: 1.8rem;
    color: #d4af37;
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width: 768px) {
    .entry-content h2 {
        margin-top: 0 !important;
    }
    
}

.entry-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.entry-content h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #f4d03f;
    padding: 0 15px;
    margin: 30px 0 15px 0;
    font-weight: 500;
}

.entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 40px 0;
}

/* Entry Footer */
.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.cat-links a {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1611 !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cat-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ========================================
   POST NAVIGATION
   ======================================== */

.post-navigation {
    background: rgba(45, 38, 32, 0.6);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.post-navigation h2 {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
    background: linear-gradient(135deg, #2d2620, #1f1c16);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.nav-previous a,
.nav-next a {
    color: #e0d5b7;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #d4af37;
}

.nav-next {
    text-align: right;
}

/* ========================================
   SIDEBAR STYLING
   ======================================== */

#secondary {
    width: 30%;
    float: right;
    background: linear-gradient(135deg, #2d2620 0%, #1f1c16 100%);
    border-radius: 12px;
    padding: 30px 0 !important;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: fit-content;
    position: sticky;
    top: 20px;
}

#secondary aside {
    padding: 0 15px;
}

.widget {
    margin-bottom: 35px;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
}

/* Search Widget */
.search-form {
    position: relative;
    margin-bottom: 0;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 15px;
    background: rgba(26, 22, 17, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #e0d5b7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.single .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border: none;
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single .search-form button:hover {
    transform: translateY(-50%) scale(1.1);
}

.svg-icon-search {
    width: 18px;
    height: 18px;
    fill: #1a1611;
}

/* Widget Lists */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 12px;
    padding-left: 20px !important;
    position: relative;
}

.widget:not(.widget_sow-hero) li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
    top: 12px;
}

.widget li a {
    color: #e0d5b7;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0 !important;
}

.widget li a:hover {
    color: #d4af37;
    padding-left: 10px;
}

/* Categories Widget */
.widget_categories .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 ;
    }
    
    #primary {
        width: 100%;
        float: none;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    #secondary {
        width: 100%;
        float: none;
        position: static;
    }
    
    .entry {
        padding: 25px 20px;
        padding-top: 0 !important;
    }
    
    .entry-thumbnail {
        margin: -25px -20px 20px -20px;
    }
    
    /* .entry-thumbnail img {
        height: 250px;
    } */
    
    .entry-title {
        font-size: 2rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }

    .entry-content {
        line-height: 1.2 !important;
    }
    
    .nav-links {
        flex-direction: column;
    }


    
    .nav-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 1.6rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .search-form input[type="search"] {
        padding: 10px 45px 10px 12px;
    }

        .nav-links  > div {
        width: 100% !important; 
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
/* a:focus,
input:focus,
button:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
} */

/* ========================================
   ENTRY FOOTER - SAMOSTATNÝ ŠTÝL
   ======================================== */

/* Entry Footer */
.entry-footer {
    margin-top: 40px;
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(26, 22, 17, 0.8), rgba(45, 38, 32, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    text-align: center;
}

.cat-links {
    color: #e0d5b7;
    font-size: 1rem;
    font-weight: 400;
}

.cat-links a {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1611;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
}

.posted-by,
#archives-2,
#recent-comments-2 {
    display: none !important;
}

@media screen and (max-width: 768px) {
    p, 
    .entry-content p, 
    article p {
        font-size: 1.2rem;
        font-weight: 400;
        color: rgba(255,255,255,0.9) !important;
        line-height: 1.4;
    }
    
}


body.responsive #content.site-content .widget-area {
    padding:  15px;
}