/**
 * Minimal Layout - Single Video Player
 * Simple, clean video player without playlist or navigation
 */

.gtnb-vp-minimal {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.gtnb-vp-minimal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #1e1e1e;
    line-height: 1.3;
}

.gtnb-vp-minimal-container {
    position: relative;
    width: 100%;
}

/* Subtitle controls */
.gtnb-vp-minimal .gtnb-vp-subtitle-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}

.gtnb-vp-minimal .gtnb-vp-subtitle-toggle {
    background: rgba(245, 184, 46, 0.9);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gtnb-vp-minimal .gtnb-vp-subtitle-toggle:hover {
    background: rgba(245, 184, 46, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gtnb-vp-minimal .gtnb-vp-subtitle-toggle.active {
    background: rgba(46, 204, 113, 0.9);
    color: #fff;
}

.gtnb-vp-minimal .gtnb-vp-subtitle-toggle.active:hover {
    background: rgba(46, 204, 113, 1);
}

/* Video player */
.gtnb-vp-minimal .video-js {
    width: 100%;
    height: auto;
}

/* NEW: Post Title (below video, inside content) */
.gtnb-vp-minimal-post-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #f5b82e;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* NEW: Content wrapper (below video) */
.gtnb-vp-minimal-content {
    margin-top: 2rem;
    padding: 0;
}

/* NEW: Excerpt */
.gtnb-vp-minimal-excerpt {
    margin-bottom: 1.5rem;
}

.gtnb-vp-minimal-excerpt p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f9f9f9;
    margin: 0;
}

/* NEW: Full Content */
.gtnb-vp-minimal-content-text {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(245, 184, 46, 0.15);
    font-size: 1rem;
    line-height: 1.7;
    color: #f9f9f9;
}

.gtnb-vp-minimal-content-text p {
    margin-bottom: 1rem;
}

.gtnb-vp-minimal-content-text h1,
.gtnb-vp-minimal-content-text h2,
.gtnb-vp-minimal-content-text h3 {
    color: #f5b82e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.gtnb-vp-minimal-content-text ul,
.gtnb-vp-minimal-content-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* NEW: Meta údaje */
.gtnb-vp-minimal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(245, 184, 46, 0.15);
}

.gtnb-vp-minimal-meta span {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: #a6a6a6;
    background: rgba(38, 38, 38, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 184, 46, 0.2);
}

.gtnb-vp-minimal-meta .meta-type {
    color: #f5b82e;
    font-weight: 600;
}

/* NEW: ACF pole */
.gtnb-vp-minimal-acf {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.5);
    border-radius: 6px;
    border-left: 3px solid #f5b82e;
}

.gtnb-vp-minimal-acf .acf-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5b82e;
    margin-bottom: 0.5rem;
}

.gtnb-vp-minimal-acf .acf-value {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f9f9f9;
}

/* NEW: Edit link - simple text link */
.gtnb-vp-minimal-edit-link {
    display: inline-block;
    margin-top: 1rem;
    color: #f5b82e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gtnb-vp-minimal-edit-link:hover {
    color: #f7cb52;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gtnb-vp-minimal-post-title {
        font-size: 1.5rem;
    }
    
    .gtnb-vp-minimal-title {
        font-size: 1.25rem;
    }
    
    .gtnb-vp-minimal-content {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .gtnb-vp-minimal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gtnb-vp-minimal-meta span {
        width: 100%;
        justify-content: center;
    }
    
    .gtnb-vp-minimal .gtnb-vp-subtitle-toggle {
        padding: 6px 12px;
        font-size: 13px;
    }
}
